7 lines
257 B
CMake
7 lines
257 B
CMake
cmake_minimum_required(VERSION 3.19)
|
|
project(Chapter04)
|
|
include(../../CMake/CommonMacros.txt)
|
|
SETUP_APP(Ch04_04_CubeMap "Chapter 04")
|
|
|
|
target_include_directories(Ch04_04_CubeMap PUBLIC ${CMAKE_SOURCE_DIR})
|
|
target_link_libraries(Ch04_04_CubeMap SharedUtils)
|