[ox] Rename Serialization package to Model
This commit is contained in:
parent
cf7ba595aa
commit
bf6469b4a3
2
deps/ox/src/ox/CMakeLists.txt
vendored
2
deps/ox/src/ox/CMakeLists.txt
vendored
@ -4,5 +4,5 @@ endif(OX_USE_STDLIB STREQUAL "ON")
|
||||
add_subdirectory(fs)
|
||||
add_subdirectory(mc)
|
||||
add_subdirectory(ptrarith)
|
||||
add_subdirectory(ser)
|
||||
add_subdirectory(model)
|
||||
add_subdirectory(std)
|
||||
|
2
deps/ox/src/ox/mc/CMakeLists.txt
vendored
2
deps/ox/src/ox/mc/CMakeLists.txt
vendored
@ -7,7 +7,7 @@ add_library(
|
||||
|
||||
target_link_libraries(
|
||||
OxMetalClaw PUBLIC
|
||||
OxSerialization
|
||||
OxModel
|
||||
OxStd
|
||||
)
|
||||
|
||||
|
4
deps/ox/src/ox/mc/read.hpp
vendored
4
deps/ox/src/ox/mc/read.hpp
vendored
@ -8,8 +8,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <ox/ser/optype.hpp>
|
||||
#include <ox/ser/types.hpp>
|
||||
#include <ox/model/optype.hpp>
|
||||
#include <ox/model/types.hpp>
|
||||
#include <ox/std/byteswap.hpp>
|
||||
#include <ox/std/string.hpp>
|
||||
#include <ox/std/vector.hpp>
|
||||
|
2
deps/ox/src/ox/mc/test/tests.cpp
vendored
2
deps/ox/src/ox/mc/test/tests.cpp
vendored
@ -13,7 +13,7 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <ox/mc/mc.hpp>
|
||||
#include <ox/ser/ser.hpp>
|
||||
#include <ox/model/model.hpp>
|
||||
#include <ox/std/std.hpp>
|
||||
|
||||
struct TestStructNest {
|
||||
|
2
deps/ox/src/ox/mc/walk.hpp
vendored
2
deps/ox/src/ox/mc/walk.hpp
vendored
@ -8,7 +8,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <ox/ser/walk.hpp>
|
||||
#include <ox/model/walk.hpp>
|
||||
|
||||
namespace ox {
|
||||
|
||||
|
4
deps/ox/src/ox/mc/write.hpp
vendored
4
deps/ox/src/ox/mc/write.hpp
vendored
@ -8,8 +8,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <ox/ser/optype.hpp>
|
||||
#include <ox/ser/types.hpp>
|
||||
#include <ox/model/optype.hpp>
|
||||
#include <ox/model/types.hpp>
|
||||
#include <ox/std/bitops.hpp>
|
||||
#include <ox/std/byteswap.hpp>
|
||||
#include <ox/std/string.hpp>
|
||||
|
@ -1,17 +1,17 @@
|
||||
add_library(
|
||||
OxSerialization
|
||||
OxModel
|
||||
desctypes.cpp
|
||||
descwrite.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(
|
||||
OxSerialization PUBLIC
|
||||
OxModel PUBLIC
|
||||
OxStd
|
||||
)
|
||||
|
||||
set_property(
|
||||
TARGET
|
||||
OxSerialization
|
||||
OxModel
|
||||
PROPERTY
|
||||
POSITION_INDEPENDENT_CODE ON
|
||||
)
|
||||
@ -22,14 +22,14 @@ install(
|
||||
desctypes.hpp
|
||||
descwrite.hpp
|
||||
optype.hpp
|
||||
ser.hpp
|
||||
model.hpp
|
||||
types.hpp
|
||||
walk.hpp
|
||||
DESTINATION
|
||||
include/ox/ser
|
||||
include/ox/model
|
||||
)
|
||||
|
||||
install(TARGETS OxSerialization
|
||||
install(TARGETS OxModel
|
||||
LIBRARY DESTINATION lib/ox
|
||||
ARCHIVE DESTINATION lib/ox
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user