Removed unused header
[libcds.git] / test / stress / map / insdel_item_int / CMakeLists.txt
1 set(PACKAGE_NAME stress-map-insdel-item-int)
2
3 set(CDSSTRESS_MAP_INSDEL_ITEM_INT_SOURCES
4     ../../main.cpp
5     map_insdel_item_int.cpp
6     map_insdel_item_int_bronsonavltree.cpp
7     map_insdel_item_int_cuckoo.cpp
8     map_insdel_item_int_ellentree.cpp
9     map_insdel_item_int_feldman_hashset.cpp
10     map_insdel_item_int_michael.cpp
11     map_insdel_item_int_skip.cpp
12     map_insdel_item_int_split.cpp
13     map_insdel_item_int_striped.cpp
14 )
15
16 include_directories(
17     ${CMAKE_CURRENT_SOURCE_DIR}
18     ${CMAKE_CURRENT_SOURCE_DIR}/..
19 )
20
21 add_executable(${PACKAGE_NAME} ${CDSSTRESS_MAP_INSDEL_ITEM_INT_SOURCES} $<TARGET_OBJECTS:${CDSSTRESS_FRAMEWORK_LIBRARY}>)
22 target_link_libraries(${PACKAGE_NAME} 
23     ${CDS_SHARED_LIBRARY}
24     ${GTEST_LIBRARY}
25     ${Boost_THREAD_LIBRARY}
26     ${Boost_SYSTEM_LIBRARY}
27     ${CMAKE_THREAD_LIBS_INIT}
28 )
29
30 add_test(NAME ${PACKAGE_NAME} COMMAND ${PACKAGE_NAME} WORKING_DIRECTORY ${EXECUTABLE_OUTPUT_PATH})