2016-08-03 03:35:42 -04:00
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/src/)
|
|
|
|
|
|
|
|
set (SHARED_SRCS
|
|
|
|
${CMAKE_SOURCE_DIR}/src/FastRandom.cpp
|
2019-08-26 15:38:34 -04:00
|
|
|
${CMAKE_SOURCE_DIR}/src/StringUtils.cpp
|
2016-08-03 03:35:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
set (SHARED_HDRS
|
2019-08-26 15:38:34 -04:00
|
|
|
../TestHelpers.h
|
2016-08-03 03:35:42 -04:00
|
|
|
${CMAKE_SOURCE_DIR}/src/FastRandom.h
|
2019-08-26 15:38:34 -04:00
|
|
|
${CMAKE_SOURCE_DIR}/src/StringUtils.h
|
2016-08-03 03:35:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
set (SRCS
|
|
|
|
FastRandomTest.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
source_group("Shared" FILES ${SHARED_SRCS} ${SHARED_HDRS})
|
|
|
|
source_group("Sources" FILES ${SRCS})
|
|
|
|
add_executable(FastRandom-exe ${SRCS} ${SHARED_SRCS} ${SHARED_HDRS})
|
2018-01-03 12:41:16 -05:00
|
|
|
target_link_libraries(FastRandom-exe fmt::fmt)
|
2016-08-03 03:35:42 -04:00
|
|
|
if (WIN32)
|
|
|
|
target_link_libraries(FastRandom-exe ws2_32)
|
|
|
|
endif()
|
|
|
|
add_test(NAME FastRandom-test COMMAND FastRandom-exe)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Put the projects into solution folders (MSVC):
|
|
|
|
set_target_properties(
|
|
|
|
FastRandom-exe
|
|
|
|
PROPERTIES FOLDER Tests
|
|
|
|
)
|