summaryrefslogtreecommitdiffstats
path: root/CMakeScripts
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-06-18 18:42:27 +0000
committerCampbell Barton <ideasman42@gmail.com>2011-06-18 18:42:27 +0000
commit5f618503076c1ce114f89d134e5c61eb652b8cb9 (patch)
treef423e01b0edd6da3f633640308fc31d3d7ba3eb7 /CMakeScripts
parent* [INTL:sk] Slovak translation update (diff)
downloadinkscape-5f618503076c1ce114f89d134e5c61eb652b8cb9.tar.gz
inkscape-5f618503076c1ce114f89d134e5c61eb652b8cb9.zip
cmake: correct syntax error.
(bzr r10314)
Diffstat (limited to 'CMakeScripts')
-rw-r--r--CMakeScripts/HelperMacros.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeScripts/HelperMacros.cmake b/CMakeScripts/HelperMacros.cmake
index 592e962c7..cdb4d0386 100644
--- a/CMakeScripts/HelperMacros.cmake
+++ b/CMakeScripts/HelperMacros.cmake
@@ -12,7 +12,7 @@ macro(inkscape_source_group
foreach(_SRC ${sources})
get_filename_component(_SRC_EXT ${_SRC} EXT)
- if(${_SRC_EXT} MATCHES ".h" OR ${_SRC_EXT} MATCHES ".hpp")
+ if((${_SRC_EXT} MATCHES ".h") OR (${_SRC_EXT} MATCHES ".hpp"))
source_group("Header Files" FILES ${_SRC})
else()
source_group("Source Files" FILES ${_SRC})