mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-10-29 22:45:34 +01:00
14 lines
275 B
CMake
14 lines
275 B
CMake
|
add_executable(simple_velocity_test
|
||
|
simple_velocity_test.cpp
|
||
|
)
|
||
|
|
||
|
target_include_directories(simple_velocity_test PRIVATE ".")
|
||
|
|
||
|
target_link_libraries(simple_velocity_test
|
||
|
simple_velocity_system
|
||
|
gtest_main
|
||
|
)
|
||
|
|
||
|
add_test(NAME simple_velocity_test COMMAND simple_velocity_test)
|
||
|
|