mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-18 18:56:36 +02:00
remove old transform and velocity components and replace with new decomposed components
focus on 2D for now
This commit is contained in:
23
systems/transform/CMakeLists.txt
Normal file
23
systems/transform/CMakeLists.txt
Normal file
@ -0,0 +1,23 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(transfrom_system CXX)
|
||||
|
||||
add_library(transform_system
|
||||
src/mm/systems/transform.hpp
|
||||
src/mm/systems/transform.cpp
|
||||
)
|
||||
|
||||
target_include_directories(transform_system PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src")
|
||||
|
||||
target_link_libraries(transform_system
|
||||
entt
|
||||
glm
|
||||
engine
|
||||
common_components
|
||||
tracy_client
|
||||
)
|
||||
|
||||
#if (BUILD_TESTING)
|
||||
#add_subdirectory(test)
|
||||
#endif()
|
||||
|
||||
|
Reference in New Issue
Block a user