DarkflameServer/tests/dECSTests/CMakeLists.txt

10 lines
196 B
CMake
Raw Normal View History

add_executable(dECSTests
"TestECS.cpp"
)
# Link needed libraries
target_link_libraries(dECSTests PRIVATE dCommon dECS GTest::gtest_main)
# Discover the tests
gtest_discover_tests(dECSTests)