10 lines
275 B
CMake
10 lines
275 B
CMake
|
macro(CMGUISetup CMGUI_ROOT_PATH)
|
||
|
|
||
|
message("CMROOT_ROOT_PATH: " ${CMGUI_ROOT_PATH})
|
||
|
|
||
|
set(CMGUI_ROOT_INCLUDE_PATH ${CMGUI_ROOT_PATH}/inc/gui)
|
||
|
set(CMGUI_ROOT_SOURCE_PATH ${CMGUI_ROOT_PATH}/src)
|
||
|
|
||
|
include_directories(${CMGUI_ROOT_INCLUDE_PATH})
|
||
|
endmacro()
|