[ox] Rename Serialization package to Model

This commit is contained in:
2019-03-17 13:04:18 -05:00
parent cf7ba595aa
commit bf6469b4a3
17 changed files with 14 additions and 14 deletions

35
deps/ox/src/ox/model/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,35 @@
add_library(
OxModel
desctypes.cpp
descwrite.cpp
)
target_link_libraries(
OxModel PUBLIC
OxStd
)
set_property(
TARGET
OxModel
PROPERTY
POSITION_INDEPENDENT_CODE ON
)
install(
FILES
descread.hpp
desctypes.hpp
descwrite.hpp
optype.hpp
model.hpp
types.hpp
walk.hpp
DESTINATION
include/ox/model
)
install(TARGETS OxModel
LIBRARY DESTINATION lib/ox
ARCHIVE DESTINATION lib/ox
)