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

19 lines
318 B
Text
Raw Normal View History

2020-08-11 12:07:21 -04:00
set(SRC
include/asset_types.hpp
include/asset.hpp
include/assetptr.hpp
src/asset.cpp)
2020-08-11 12:07:21 -04:00
add_library(Asset STATIC ${SRC})
2020-08-11 12:07:21 -04:00
target_include_directories(Asset PUBLIC include)
target_link_libraries(Asset
PUBLIC
Math
Renderer
2020-08-11 12:07:21 -04:00
PRIVATE
stb
Log
Core)
set_engine_properties(Asset)