mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-18 18:56:36 +02:00
initial import, >900commits predate this
This commit is contained in:
28
systems/player_velocity/CMakeLists.txt
Normal file
28
systems/player_velocity/CMakeLists.txt
Normal file
@ -0,0 +1,28 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(player_velocity_system CXX)
|
||||
|
||||
add_library(player_velocity_system
|
||||
src/mm/systems/player_velocity2d_system.hpp
|
||||
src/mm/systems/player_velocity2d_system.cpp
|
||||
)
|
||||
|
||||
target_include_directories(player_velocity_system PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src")
|
||||
|
||||
target_link_libraries(player_velocity_system
|
||||
entt
|
||||
glm
|
||||
engine
|
||||
common_components
|
||||
input_service
|
||||
)
|
||||
|
||||
if(EMSCRIPTEN)
|
||||
set_target_properties(player_velocity_system PROPERTIES COMPILE_FLAGS "-s USE_SDL=2")
|
||||
set_target_properties(player_velocity_system PROPERTIES LINK_FLAGS "-s USE_SDL=2")
|
||||
endif()
|
||||
|
||||
if (BUILD_TESTING)
|
||||
add_subdirectory(test)
|
||||
endif()
|
||||
|
||||
|
Reference in New Issue
Block a user