8 lines
254 B
Text
8 lines
254 B
Text
|
|
cmake_minimum_required(VERSION 3.19)
|
||
|
|
project(Chapter03)
|
||
|
|
include(../../CMake/CommonMacros.txt)
|
||
|
|
SETUP_APP(Ch03_01_Assimp "Chapter 03")
|
||
|
|
|
||
|
|
target_include_directories(Ch03_01_Assimp PUBLIC ${CMAKE_SOURCE_DIR})
|
||
|
|
target_link_libraries(Ch03_01_Assimp SharedUtils)
|