2022-11-07 00:12:35 -08:00
|
|
|
set(DGAMETEST_SOURCES
|
|
|
|
"GameDependencies.cpp"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_subdirectory(dComponentsTests)
|
|
|
|
list(APPEND DGAMETEST_SOURCES ${DCOMPONENTS_TESTS})
|
|
|
|
|
2022-11-27 16:48:46 -08:00
|
|
|
add_subdirectory(dGameMessagesTests)
|
|
|
|
list(APPEND DGAMETEST_SOURCES ${DGAMEMESSAGES_TESTS})
|
|
|
|
|
2023-02-13 18:55:44 -08:00
|
|
|
file(COPY ${GAMEMESSAGE_TESTBITSTREAMS} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
2024-11-17 16:27:33 -08:00
|
|
|
file(COPY ${COMPONENT_TEST_DATA} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
2023-02-13 18:55:44 -08:00
|
|
|
|
2022-11-07 00:12:35 -08:00
|
|
|
# Add the executable. Remember to add all tests above this!
|
|
|
|
add_executable(dGameTests ${DGAMETEST_SOURCES})
|
|
|
|
|
2024-03-06 03:13:24 +01:00
|
|
|
if(APPLE)
|
2024-12-07 22:36:49 -08:00
|
|
|
add_custom_target(dGameTestsLink
|
|
|
|
${CMAKE_COMMAND} -E copy $<TARGET_FILE:MariaDB::ConnCpp> ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
|
|
|
add_dependencies(dGameTests dGameTestsLink)
|
2024-03-06 03:13:24 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
target_link_libraries(dGameTests ${COMMON_LIBRARIES} GTest::gtest_main
|
|
|
|
dGame dScripts dPhysics Detour Recast tinyxml2 dWorldServer dZoneManager dChatFilter dNavigation)
|
2022-11-07 00:12:35 -08:00
|
|
|
|
|
|
|
# Discover the tests
|
|
|
|
gtest_discover_tests(dGameTests)
|