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

15 lines
No EOL
365 B
CMake

set(SRC
include/example.hpp
src/example.cpp)
add_platform_executable(
TARGET ExampleApp
APP_CLASS ExampleApp
APP_INCLUDE example.hpp
SRC ${SRC}
SKIP_DATA OFF)
target_link_libraries(ExampleApp PUBLIC
Core)
target_include_directories(ExampleApp PUBLIC
include)
set_engine_properties(ExampleApp)