mirror of
https://github.com/wqking/eventpp.git
synced 2024-12-28 09:08:17 +08:00
32 lines
670 B
CMake
32 lines
670 B
CMake
set(TARGET_TEST unittest)
|
|
|
|
set(SRC_TEST
|
|
testmain.cpp
|
|
tutorial_callbacklist.cpp
|
|
tutorial_eventdispatcher.cpp
|
|
tutorial_eventqueue.cpp
|
|
test_callbacklist_basic.cpp
|
|
test_callbacklist_ctors.cpp
|
|
test_callbacklist_multithread.cpp
|
|
test_dispatcher_basic.cpp
|
|
test_dispatcher_ctors.cpp
|
|
test_dispatcher_multithread.cpp
|
|
test_queue_basic.cpp
|
|
test_queue_multithread.cpp
|
|
test_heterdispatcher_basic.cpp
|
|
test_eventutil.cpp
|
|
test_conditionalremover.cpp
|
|
test_counterremover.cpp
|
|
test_scopedremover.cpp
|
|
)
|
|
|
|
add_executable(
|
|
${TARGET_TEST}
|
|
${SRC_TEST}
|
|
)
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package(Threads REQUIRED)
|
|
target_link_libraries(${TARGET_TEST} Threads::Threads)
|
|
|