Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/unittest/src/utils/threadpool/CMakeLists.txt
169684 views
1
add_executable(testthreadpool ThreadPoolTest.cpp)
2
set_property(TARGET testthreadpool PROPERTY FOLDER "test_exe")
3
add_test(testthreadpool ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/testthreadpool)
4
5
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
6
target_link_libraries(testthreadpool pthread)
7
endif ()
8
9