umbra/projs/shadow/shadow-runtime/CMakeLists.txt
Curle a370f28f14
Implement a Vulkan Renderer module (#2)
* Starting work on the Vlkx renderer

* Fix renderer implementation

* Move GLM to FetchContent
2022-07-19 20:41:44 +02:00

10 lines
288 B
CMake

set(CMAKE_CXX_STANDARD 20)
find_package(SDL2 REQUIRED)
FILE(GLOB_RECURSE SOURCES src/*.cpp src/*.h)
add_executable(shadow-runtime ${SOURCES})
target_include_directories(shadow-runtime PRIVATE ${SDL2_INCLUDE_DIRS})
target_link_libraries(shadow-runtime PRIVATE SDL2::Main shadow-engine)