7 lines
266 B
CMake
7 lines
266 B
CMake
cmake_minimum_required(VERSION 3.19)
|
|
project(Chapter01)
|
|
include(../../CMake/CommonMacros.txt)
|
|
SETUP_APP(Ch01_Sample02_GLFW "Chapter 01")
|
|
|
|
target_include_directories(Ch01_Sample02_GLFW PUBLIC ${CMAKE_SOURCE_DIR})
|
|
target_link_libraries(Ch01_Sample02_GLFW SharedUtils)
|