mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
926 B
CMake
34 lines
926 B
CMake
file(GLOB OPENCS_TESTS_SRC_FILES
|
|
main.cpp
|
|
model/world/testinfocollection.cpp
|
|
model/world/testuniversalid.cpp
|
|
)
|
|
|
|
source_group(apps\\openmw-cs-tests FILES ${OPENCS_TESTS_SRC_FILES})
|
|
|
|
openmw_add_executable(openmw-cs-tests ${OPENCS_TESTS_SRC_FILES})
|
|
|
|
target_include_directories(openmw-cs-tests SYSTEM PRIVATE ${GTEST_INCLUDE_DIRS})
|
|
target_include_directories(openmw-cs-tests SYSTEM PRIVATE ${GMOCK_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(openmw-cs-tests PRIVATE
|
|
openmw-cs-lib
|
|
GTest::GTest
|
|
GMock::GMock
|
|
)
|
|
|
|
if (UNIX AND NOT APPLE)
|
|
target_link_libraries(openmw-cs-tests PRIVATE ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|
|
|
|
if (BUILD_WITH_CODE_COVERAGE)
|
|
target_compile_options(openmw-cs-tests PRIVATE --coverage)
|
|
target_link_libraries(openmw-cs-tests PRIVATE gcov)
|
|
endif()
|
|
|
|
if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
|
|
target_precompile_headers(openmw-cs-tests PRIVATE
|
|
<gtest/gtest.h>
|
|
)
|
|
endif()
|