summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYehonal <hw.2@hotmail.it>2016-07-09 06:33:04 +0200
committerYehonal <hw.2@hotmail.it>2016-07-10 17:12:36 +0200
commitc170910cc2187dbd1ab69998c411fa06a0071d1d (patch)
tree49c43065b662b7e59e86186253e35c95a4274d19
parent03cc9e5a18beaa8b45140c68296cb89fb1c2fe6c (diff)
fixed path inclusion
-rw-r--r--src/cmake/utils.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmake/utils.cmake b/src/cmake/utils.cmake
index 32cb35e365..b3ab0f6b42 100644
--- a/src/cmake/utils.cmake
+++ b/src/cmake/utils.cmake
@@ -76,8 +76,9 @@ MACRO(AZTH_ADD_INC_PATH val)
${AZTH_INC_PATHS}
${val}
)
+
#update cache
- AZTH_SET_CACHE("AZTH_INC_PATHS" ${AZTH_INC_PATHS})
+ AZTH_SET_CACHE("AZTH_INC_PATHS" "${AZTH_INC_PATHS}")
include_directories(${val})
ENDMACRO()