1
0
forked from josh/j3ml

Implement CreateFrustumFromCamera

This commit is contained in:
2024-01-10 14:46:12 -05:00
parent cc9ff95daa
commit dea5735c87
7 changed files with 179 additions and 14 deletions

View File

@@ -32,7 +32,8 @@ file(GLOB_RECURSE J3ML_SRC "src/J3ML/*.c" "src/J3ML/*.cpp")
include_directories("include")
add_library(J3ML SHARED ${J3ML_SRC}
src/J3ML/LinearAlgebra/AxisAngle.cpp)
src/J3ML/LinearAlgebra/AxisAngle.cpp
include/J3ML/LinearAlgebra/Vector.h)
set_target_properties(J3ML PROPERTIES LINKER_LANGUAGE CXX)
install(TARGETS ${PROJECT_NAME} DESTINATION lib/${PROJECT_NAME})