Adds cmake file for junction test case
[junction.git] / test / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.8.5)
2
3 set(PACKAGE_NAME stress-sequential-junction)
4 set(JUNCTION_TEST_SOURCES
5     junction_driver.cpp
6 )
7
8 set(CMAKE_CONFIGURATION_TYPES "Release" CACHE INTERNAL "Build configs")
9
10 set(JUNCTION_LIB
11   junction
12   turf
13 )
14
15 add_executable(${PACKAGE_NAME} ${JUNCTION_TEST_SOURCES})
16 target_link_libraries(${PACKAGE_NAME} ${JUNCTION_LIB})