mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-25 16:41:04 +00:00
16 lines
189 B
CMake
16 lines
189 B
CMake
set(SRCS
|
|
lin/matrix4x4.cpp
|
|
lin/vec3.cpp
|
|
lin/quat.cpp
|
|
curves.cpp
|
|
math_util.cpp
|
|
)
|
|
|
|
set(SRCS ${SRCS})
|
|
|
|
add_library(lin STATIC ${SRCS})
|
|
|
|
if(UNIX)
|
|
add_definitions(-fPIC)
|
|
endif(UNIX)
|