CMCore/path_config.cmake
2019-08-22 11:37:05 +08:00

9 lines
278 B
CMake

macro(CMCoreSetup CMCORE_ROOT_PATH)
message("CMROOT_ROOT_PATH: " ${CMCORE_ROOT_PATH})
set(CMCORE_ROOT_INCLUDE_PATH ${CMCORE_ROOT_PATH}/inc)
set(CMCORE_ROOT_SOURCE_PATH ${CMCORE_ROOT_PATH}/src)
include_directories(${CMCORE_ROOT_INCLUDE_PATH})
endmacro()