aboutsummaryrefslogtreecommitdiff
path: root/cmake/macros/AutoCollect.cmake
diff options
context:
space:
mode:
authoripriver <g1ran1q@gmail.com>2020-06-22 15:27:03 +0300
committerPeter Keresztes Schmidt <carbenium@outlook.com>2020-06-24 14:42:02 +0200
commita46d047f9466c6f16597755bb7c771a9d1a147f2 (patch)
tree136303f021208e514db5c9b0fff1b65dc8d2d3cf /cmake/macros/AutoCollect.cmake
parentb210bb37130087d9a25a61dfb1b8baa60540c12c (diff)
fixed indentation for cmake files
Diffstat (limited to 'cmake/macros/AutoCollect.cmake')
-rw-r--r--cmake/macros/AutoCollect.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/macros/AutoCollect.cmake b/cmake/macros/AutoCollect.cmake
index 73c019f7031..6b91517bc0d 100644
--- a/cmake/macros/AutoCollect.cmake
+++ b/cmake/macros/AutoCollect.cmake
@@ -36,7 +36,7 @@ function(CollectSourceFiles current_dir variable)
file(GLOB SUB_DIRECTORIES ${current_dir}/*)
foreach(SUB_DIRECTORY ${SUB_DIRECTORIES})
- if (IS_DIRECTORY ${SUB_DIRECTORY})
+ if(IS_DIRECTORY ${SUB_DIRECTORY})
CollectSourceFiles("${SUB_DIRECTORY}" "${variable}" "${ARGN}")
endif()
endforeach()
@@ -62,7 +62,7 @@ function(CollectIncludeDirectories current_dir variable)
list(APPEND ${variable} ${current_dir})
file(GLOB SUB_DIRECTORIES ${current_dir}/*)
foreach(SUB_DIRECTORY ${SUB_DIRECTORIES})
- if (IS_DIRECTORY ${SUB_DIRECTORY})
+ if(IS_DIRECTORY ${SUB_DIRECTORY})
CollectIncludeDirectories("${SUB_DIRECTORY}" "${variable}" "${ARGN}")
endif()
endforeach()