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/example/CMakeLists.txt

14 lines
311 B
Text
Raw Normal View History

2020-12-28 15:45:09 -05:00
set(SRC
include/example.hpp
src/example.cpp)
add_platform_executable(
TARGET ExampleApp
APP_CLASS ExampleApp
APP_INCLUDE example.hpp
SRC ${SRC})
target_link_libraries(ExampleApp PUBLIC
Core)
target_include_directories(ExampleApp PUBLIC
include)
set_engine_properties(ExampleApp)