15 lines
240 B
CMake
15 lines
240 B
CMake
|
|
add_executable(xcengine_debug_tests
|
||
|
|
test_logger.cpp
|
||
|
|
test_profiler.cpp
|
||
|
|
)
|
||
|
|
|
||
|
|
target_link_libraries(xcengine_debug_tests
|
||
|
|
PRIVATE
|
||
|
|
XCEngine
|
||
|
|
gtest
|
||
|
|
gtest_main
|
||
|
|
)
|
||
|
|
|
||
|
|
include(GoogleTest)
|
||
|
|
gtest_discover_tests(xcengine_debug_tests)
|