CM2D/path_config.cmake
2019-11-29 19:36:38 +08:00

9 lines
260 B
CMake

macro(CM2DSetup CM2D_ROOT_PATH)
message("CM2D_ROOT_PATH: " ${CM2D_ROOT_PATH})
set(CM2D_ROOT_INCLUDE_PATH ${CM2D_ROOT_PATH}/inc)
set(CM2D_ROOT_SOURCE_PATH ${CM2D_ROOT_PATH}/src)
include_directories(${CM2D_ROOT_INCLUDE_PATH})
endmacro()