2017-06-27 23:20:14 +02:00
|
|
|
|
2018-12-27 23:45:16 +01:00
|
|
|
set(hdrs
|
|
|
|
include/pw/core/axisangle.hpp
|
|
|
|
include/pw/core/core.hpp
|
|
|
|
include/pw/core/math.hpp
|
|
|
|
include/pw/core/matrixbase.hpp
|
|
|
|
include/pw/core/matrix.hpp
|
|
|
|
include/pw/core/vector.hpp
|
|
|
|
include/pw/core/quaternion.hpp
|
|
|
|
include/pw/core/serialize.hpp
|
|
|
|
include/pw/core/image.hpp
|
2018-12-30 23:36:53 +01:00
|
|
|
include/pw/core/size.hpp
|
2018-12-27 23:45:16 +01:00
|
|
|
include/pw/core/globals.hpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(srcs
|
|
|
|
src/core.cpp
|
|
|
|
src/serialize.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(pwcore
|
|
|
|
STATIC
|
|
|
|
${hdrs}
|
|
|
|
${srcs}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(
|
|
|
|
pwcore
|
|
|
|
PUBLIC
|
|
|
|
include
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(pwcore)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#add_subdirectory(src)
|
2018-04-02 01:06:50 +02:00
|
|
|
add_subdirectory(tests)
|
2017-06-27 23:20:14 +02:00
|
|
|
|