Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/engine/asset/CMakeLists.txt
Joshua Goins 8502521934 Rip out the material node system
This was over engineered, and it's blocking progress in the model compiler. Now it's
simpler, but not all features are implemented back.
2022-02-03 10:00:59 -05:00

18 lines
318 B
CMake

set(SRC
include/asset_types.hpp
include/asset.hpp
include/assetptr.hpp
src/asset.cpp)
add_library(Asset STATIC ${SRC})
target_include_directories(Asset PUBLIC include)
target_link_libraries(Asset
PUBLIC
Math
Renderer
PRIVATE
stb
Log
Core)
set_engine_properties(Asset)