stories/engine/CMakeLists.txt

28 lines
430 B
CMake
Raw Normal View History

2023-09-24 16:16:10 +00:00
set(SOURCES
instance.cpp
engine.cpp
utils.cpp
window.cpp
surface.cpp
physicaldevice.cpp
logicaldevice.cpp
swapchain.cpp
)
set(HEADERS
instance.h
engine.h
utils.h
window.h
surface.h
physicaldevice.h
logicaldevice.h
swapchain.h
)
add_library(engine STATIC ${SOURCES})
add_subdirectory(program)
2023-09-24 16:16:10 +00:00
target_include_directories(engine PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})