light/modules/asset_parser/CMakeLists.txt
light7734 38997b3908
feat: asset baking
Only supported .png textures at the moment
2025-07-09 15:30:54 +03:30

11 lines
206 B
CMake

add_library_module(asset_parser
parser.cpp
assets/texture.cpp
)
target_link_libraries(
asset_parser
PRIVATE LZ4::lz4_static
PRIVATE nlohmann_json::nlohmann_json
PRIVATE logger
)