14 lines
300 B
CMake
Executable file
14 lines
300 B
CMake
Executable file
set(SRC
|
|
include/math.hpp
|
|
include/matrix.hpp
|
|
include/transform.hpp
|
|
include/vector.hpp
|
|
include/quaternion.hpp
|
|
include/plane.hpp
|
|
|
|
src/transform.cpp
|
|
src/math.cpp)
|
|
|
|
add_library(Math STATIC ${SRC})
|
|
target_include_directories(Math PUBLIC include)
|
|
set_engine_properties(Math)
|