Added yaze_test CMakeLists.txt

This commit is contained in:
scawful
2022-06-08 23:22:19 -04:00
parent bdafdcf069
commit 80fb4e3f0e

27
tests/CMakeLists.txt Normal file
View File

@@ -0,0 +1,27 @@
# GoogleTest ------------------------------------------------------------------------------------
include(FetchContent)
FetchContent_Declare(
googletest
URL https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip
)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)
enable_testing()
add_executable(
yaze_test
yaze_test.cc
)
target_link_libraries(
yaze_test
${BOOST_LIBRARIES}
${SDL2_LIBRARIES}
${OPENGL_LIBRARIES}
gtest_main
gtest
)
include(GoogleTest)
gtest_discover_tests(yaze_test)