open-license-manager
2014-04-13 5b35fd450ef78c3be506ca3fc22c3f431ae5e562
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
link_directories ( ${Boost_LIBRARY_DIRS} )
 
add_executable(
 license_reader_test
 LicenseReader_test.cpp
)
 
target_link_libraries(
 license_reader_test
 ${Boost_LIBRARIES}
 reader
 os
 base
 ${PLATFORM_LIBS}
)
 
SET_TARGET_PROPERTIES(license_reader_test PROPERTIES LINK_SEARCH_START_STATIC ON)
ADD_TEST(license_reader_test ${EXECUTABLE_OUTPUT_PATH}/LicenseReader_test)