Files
dx12-starter/test/CMakeLists.txt
2024-04-05 12:03:20 +00:00

16 lines
262 B
CMake

include(${CMAKE_SCRIPTS_DIR}/googletest.cmake)
set(current_target opengl-starter-test)
add_executable(
${current_target}
test_main.cpp
)
target_link_libraries(
${current_target}
gtest_main
)
include(GoogleTest)
gtest_discover_tests(${current_target})