[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(fs)
|
||||||
add_subdirectory(mc)
|
add_subdirectory(mc)
|
||||||
add_subdirectory(ptrarith)
|
add_subdirectory(ptrarith)
|
||||||
add_subdirectory(ser)
|
add_subdirectory(model)
|
||||||
add_subdirectory(std)
|
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(
|
target_link_libraries(
|
||||||
OxMetalClaw PUBLIC
|
OxMetalClaw PUBLIC
|
||||||
OxSerialization
|
OxModel
|
||||||
OxStd
|
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
|
#pragma once
|
||||||
|
|
||||||
#include <ox/ser/optype.hpp>
|
#include <ox/model/optype.hpp>
|
||||||
#include <ox/ser/types.hpp>
|
#include <ox/model/types.hpp>
|
||||||
#include <ox/std/byteswap.hpp>
|
#include <ox/std/byteswap.hpp>
|
||||||
#include <ox/std/string.hpp>
|
#include <ox/std/string.hpp>
|
||||||
#include <ox/std/vector.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 <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <ox/mc/mc.hpp>
|
#include <ox/mc/mc.hpp>
|
||||||
#include <ox/ser/ser.hpp>
|
#include <ox/model/model.hpp>
|
||||||
#include <ox/std/std.hpp>
|
#include <ox/std/std.hpp>
|
||||||
|
|
||||||
struct TestStructNest {
|
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
|
#pragma once
|
||||||
|
|
||||||
#include <ox/ser/walk.hpp>
|
#include <ox/model/walk.hpp>
|
||||||
|
|
||||||
namespace ox {
|
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
|
#pragma once
|
||||||
|
|
||||||
#include <ox/ser/optype.hpp>
|
#include <ox/model/optype.hpp>
|
||||||
#include <ox/ser/types.hpp>
|
#include <ox/model/types.hpp>
|
||||||
#include <ox/std/bitops.hpp>
|
#include <ox/std/bitops.hpp>
|
||||||
#include <ox/std/byteswap.hpp>
|
#include <ox/std/byteswap.hpp>
|
||||||
#include <ox/std/string.hpp>
|
#include <ox/std/string.hpp>
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
add_library(
|
add_library(
|
||||||
OxSerialization
|
OxModel
|
||||||
desctypes.cpp
|
desctypes.cpp
|
||||||
descwrite.cpp
|
descwrite.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(
|
target_link_libraries(
|
||||||
OxSerialization PUBLIC
|
OxModel PUBLIC
|
||||||
OxStd
|
OxStd
|
||||||
)
|
)
|
||||||
|
|
||||||
set_property(
|
set_property(
|
||||||
TARGET
|
TARGET
|
||||||
OxSerialization
|
OxModel
|
||||||
PROPERTY
|
PROPERTY
|
||||||
POSITION_INDEPENDENT_CODE ON
|
POSITION_INDEPENDENT_CODE ON
|
||||||
)
|
)
|
||||||
@ -22,14 +22,14 @@ install(
|
|||||||
desctypes.hpp
|
desctypes.hpp
|
||||||
descwrite.hpp
|
descwrite.hpp
|
||||||
optype.hpp
|
optype.hpp
|
||||||
ser.hpp
|
model.hpp
|
||||||
types.hpp
|
types.hpp
|
||||||
walk.hpp
|
walk.hpp
|
||||||
DESTINATION
|
DESTINATION
|
||||||
include/ox/ser
|
include/ox/model
|
||||||
)
|
)
|
||||||
|
|
||||||
install(TARGETS OxSerialization
|
install(TARGETS OxModel
|
||||||
LIBRARY DESTINATION lib/ox
|
LIBRARY DESTINATION lib/ox
|
||||||
ARCHIVE DESTINATION lib/ox
|
ARCHIVE DESTINATION lib/ox
|
||||||
)
|
)
|
Loading…
x
Reference in New Issue
Block a user