colobot/test/unit/CMakeLists.txt

66 lines
1.2 KiB
CMake
Raw Normal View History

# Platform-dependent tests
if(PLATFORM_WINDOWS)
set(PLATFORM_TESTS app/system_windows_test.cpp)
elseif(PLATFORM_LINUX)
set(PLATFORM_TESTS app/system_linux_test.cpp)
endif()
# Sources
set(UT_SOURCES
main.cpp
app/app_test.cpp
2015-12-23 17:44:14 +00:00
CBot/CBotToken_test.cpp
CBot/CBot.cpp
2015-07-19 13:30:30 +00:00
common/config_file_test.cpp
graphics/engine/lightman_test.cpp
math/func_test.cpp
math/geometry_test.cpp
math/matrix_test.cpp
math/vector_test.cpp
${PLATFORM_TESTS}
)
# Includes
include_directories(
common
math
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${COLOBOT_LOCAL_INCLUDES}
)
include_directories(
SYSTEM
${GTEST_INCLUDE_DIR}
2015-05-12 22:52:18 +00:00
${HIPPOMOCKS_INCLUDE_DIR}
${COLOBOT_SYSTEM_INCLUDES}
)
# Libraries
set(LIBS
gtest
colobotbase
${COLOBOT_LIBS}
)
# Test files
set(TEST_FILES
common/colobot.ini
)
file(COPY ${TEST_FILES} DESTINATION ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
# Targets
2015-08-14 11:59:05 +00:00
add_definitions(-DGTEST_HAS_TR1_TUPLE=0)
add_executable(colobot_ut ${UT_SOURCES})
target_link_libraries(colobot_ut ${LIBS})
add_test(
NAME colobot_ut
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/colobot_ut
WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
)