mirror of
https://github.com/wqking/eventpp.git
synced 2024-12-27 16:41:11 +08:00
22 lines
449 B
CMake
22 lines
449 B
CMake
set(TARGET_BENCHMARK benchmark)
|
|
|
|
set(SRC_BENCHMARK
|
|
testmain.cpp
|
|
b1_callbacklist_invoking_vs_cpp.cpp
|
|
b2_map_vs_unordered_map.cpp
|
|
b3_b5_eventqueue.cpp
|
|
b6_callbacklist_add_remove_callbacks.cpp
|
|
b7_callbacklist_vs_function_list.cpp
|
|
b8_eventqueue_anydata.cpp
|
|
)
|
|
|
|
add_executable(
|
|
${TARGET_BENCHMARK}
|
|
${SRC_BENCHMARK}
|
|
)
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package(Threads REQUIRED)
|
|
target_link_libraries(${TARGET_BENCHMARK} Threads::Threads)
|
|
|