light/modules/asset_parser/CMakeLists.txt
light7734 fc2fe26160
feat: text asset
fix: miscalculated offset for asset blobs

refactor: remove file manager completely
2025-07-09 21:30:17 +03:30

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
)