mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-24 14:33:34 +00:00
10 lines
196 B
CMake
10 lines
196 B
CMake
|
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)
|