16 lines
522 B
CMake
16 lines
522 B
CMake
cmake_minimum_required (VERSION 2.6)
|
|
|
|
link_directories(${Boost_LIBRARY_DIRS})
|
|
|
|
add_executable(AttributeTest AttributeTest.cpp)
|
|
target_link_libraries(AttributeTest ${Boost_LIBRARIES})
|
|
add_test(AttributeTest AttributeTest)
|
|
|
|
add_executable(AttributesTest AttributesTest.cpp)
|
|
target_link_libraries(AttributesTest ${Boost_LIBRARIES})
|
|
add_test(AttributesTest AttributesTest)
|
|
|
|
add_executable(String2typeTest String2typeTest.cpp)
|
|
target_link_libraries(String2typeTest ${Boost_LIBRARIES})
|
|
add_test(String2typeTest String2typeTest)
|