mirror of
https://github.com/thestk/stk
synced 2026-01-11 12:01:52 +00:00
9 lines
251 B
CMake
9 lines
251 B
CMake
project(demo)
|
|
|
|
file(GLOB DEMO_SRC "./*.cpp")
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}")
|
|
|
|
add_executable(stk-demo "demo.cpp" "utilities.cpp")
|
|
target_include_directories(stk-demo PRIVATE "./")
|
|
target_link_libraries(stk-demo PUBLIC stk) |