mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
27 lines
607 B
CMake
27 lines
607 B
CMake
set(TESTS_SRC
|
|
"Base64.cpp"
|
|
"Crypto.cpp"
|
|
"Identity.cpp"
|
|
"Utility.cpp"
|
|
)
|
|
|
|
|
|
if(WITH_TESTS)
|
|
find_package(Boost COMPONENTS
|
|
system filesystem regex program_options date_time thread chrono
|
|
unit_test_framework REQUIRED
|
|
)
|
|
|
|
add_executable(${TESTS_NAME} ${TESTS_SRC})
|
|
target_link_libraries(
|
|
${TESTS_NAME} ${CORE_NAME} ${DL_LIB} ${Boost_LIBRARIES} ${CRYPTO++_LIBRARIES}
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
)
|
|
|
|
enable_testing()
|
|
add_test(i2pdTest ${TESTS_NAME})
|
|
install(TARGETS
|
|
${TESTS_NAME} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|
|
endif()
|