subrepo: subdir: "components/etl" merged: "be5537ec" upstream: origin: "git@github.com:ETLCPP/etl.git" branch: "20.41.6" commit: "be5537ec" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
12 lines
359 B
CMake
12 lines
359 B
CMake
cmake_minimum_required(VERSION 3.5.0)
|
|
project(etl_mutex_router LANGUAGES CXX)
|
|
|
|
add_executable(etl_mutex_router MutexMessageRouter.cpp)
|
|
|
|
target_compile_definitions(etl_mutex_router PRIVATE -DETL_DEBUG)
|
|
|
|
target_include_directories(etl_mutex_router
|
|
PRIVATE
|
|
${PROJECT_SOURCE_DIR}/../../include)
|
|
|
|
set_property(TARGET etl_mutex_router PROPERTY CXX_STANDARD 17)
|