fix: miscalculated offset for asset blobs refactor: remove file manager completely
12 lines
226 B
CMake
12 lines
226 B
CMake
add_library_module(asset_parser
|
|
parser.cpp
|
|
assets/texture.cpp
|
|
assets/text.cpp
|
|
)
|
|
|
|
target_link_libraries(
|
|
asset_parser
|
|
PRIVATE LZ4::lz4_static
|
|
PRIVATE nlohmann_json::nlohmann_json
|
|
PRIVATE logger
|
|
)
|