8 lines
263 B
Text
8 lines
263 B
Text
|
|
cmake_minimum_required(VERSION 3.19)
|
||
|
|
project(Chapter02)
|
||
|
|
include(../../CMake/CommonMacros.txt)
|
||
|
|
SETUP_APP(Ch02_01_Swapchain "Chapter 02")
|
||
|
|
|
||
|
|
target_include_directories(Ch02_01_Swapchain PUBLIC ${CMAKE_SOURCE_DIR})
|
||
|
|
target_link_libraries(Ch02_01_Swapchain SharedUtils)
|