Merge pull request #118 from swang251/CMake-Support

CMake support
This commit is contained in:
garyscavone
2021-11-17 21:02:51 -05:00
committed by GitHub
7 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
project(effects)
file(GLOB EFFECTS_SRC "./*.cpp")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}")
add_executable(${PROJECT_NAME} ${EFFECTS_SRC})
target_include_directories(${PROJECT_NAME} PRIVATE "./")
target_link_libraries(${PROJECT_NAME} PUBLIC stk)