DarkflameServer/tests/dECSTests/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
202 B
CMake
Raw Normal View History

add_executable(dECSTests
"TestECS.cpp"
)
# Link needed libraries
2024-12-17 06:13:14 +00:00
target_link_libraries(dECSTests PRIVATE dCommon dGame dECS GTest::gtest_main)
# Discover the tests
gtest_discover_tests(dECSTests)