Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/engine/math/CMakeLists.txt
2021-05-12 09:56:44 -04:00

15 lines
337 B
CMake
Executable file

set(SRC
include/math.hpp
include/matrix.hpp
include/transform.hpp
include/vector.hpp
include/quaternion.hpp
include/plane.hpp
include/aabb.hpp
src/transform.cpp
src/math.cpp include/ray.hpp)
add_library(Math STATIC ${SRC})
target_include_directories(Math PUBLIC include)
set_engine_properties(Math)