mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-11 09:43:02 +01:00
15 lines
289 B
CMake
15 lines
289 B
CMake
|
add_executable(player_velocity_test
|
||
|
player_velocity_test.cpp
|
||
|
)
|
||
|
|
||
|
target_include_directories(player_velocity_test PRIVATE ".")
|
||
|
|
||
|
target_link_libraries(player_velocity_test
|
||
|
player_velocity_system
|
||
|
simple_scene
|
||
|
gtest_main
|
||
|
)
|
||
|
|
||
|
add_test(NAME player_velocity_test COMMAND player_velocity_test)
|
||
|
|