mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-23 14:03:34 +00:00
10 lines
202 B
CMake
10 lines
202 B
CMake
add_executable(dECSTests
|
|
"TestECS.cpp"
|
|
)
|
|
|
|
# Link needed libraries
|
|
target_link_libraries(dECSTests PRIVATE dCommon dGame dECS GTest::gtest_main)
|
|
|
|
# Discover the tests
|
|
gtest_discover_tests(dECSTests)
|