mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-12 02:28:11 +02:00
50 lines
1.4 KiB
CMake
50 lines
1.4 KiB
CMake
cmake_minimum_required(VERSION 2.8.7)
|
|
project(test)
|
|
enable_testing()
|
|
include_directories(${CMAKE_HOME_DIRECTORY} ${CMAKE_HOME_DIRECTORY}/include ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_HOME_DIRECTORY}/test)
|
|
include_directories(${Boost_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIR})
|
|
|
|
set(test_SRCS
|
|
StdInc.cpp
|
|
|
|
Battlefield.cpp
|
|
CMapEditManagerTest.cpp
|
|
CMapFormatTest.cpp
|
|
CMemoryBufferTest.cpp
|
|
CVcmiTestConfig.cpp
|
|
MapComparer.cpp
|
|
)
|
|
|
|
set(test_HEADERS
|
|
StdInc.h
|
|
|
|
CVcmiTestConfig.h
|
|
MapComparer.h
|
|
)
|
|
|
|
add_executable(vcmitest ${test_SRCS} ${test_HEADERS})
|
|
target_link_libraries(vcmitest vcmi ${Boost_LIBRARIES} ${RT_LIB} ${DL_LIB})
|
|
add_test(vcmitest vcmitest)
|
|
|
|
vcmi_set_output_dir(vcmitest "")
|
|
|
|
set_target_properties(vcmitest PROPERTIES ${PCH_PROPERTIES})
|
|
cotire(vcmitest)
|
|
|
|
# Files to copy to the build directory
|
|
add_custom_target(vcmitestFiles ALL)
|
|
set(vcmitest_FILES
|
|
testdata/TerrainViewTest.h3m
|
|
testdata/terrainViewMappings.json
|
|
testdata/ObjectPropertyTest/header.json
|
|
testdata/ObjectPropertyTest/objects.json
|
|
testdata/ObjectPropertyTest/surface_terrain.json
|
|
testdata/ObjectPropertyTest/underground_terrain.json
|
|
)
|
|
|
|
foreach(file ${vcmitest_FILES})
|
|
add_custom_command(TARGET vcmitestFiles POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/${file}" ${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
endforeach()
|