diff --git a/CMake/CMakeExtras.cmake b/CMake/CMakeExtras.cmake index 89bff0a146..6283d5edf9 100644 --- a/CMake/CMakeExtras.cmake +++ b/CMake/CMakeExtras.cmake @@ -2,7 +2,7 @@ # Joins arguments and places the results in ${result_var}. function(join result_var) - set(result ) + set(result) foreach (arg ${ARGN}) set(result "${result}${arg}") endforeach () @@ -18,4 +18,4 @@ function(set_verbose) list(REMOVE_AT SET_VERBOSE_CACHE 0) join(doc ${SET_VERBOSE_CACHE}) set(${SET_VERBOSE_UNPARSED_ARGUMENTS} CACHE ${type} ${doc}) -endfunction() \ No newline at end of file +endfunction() diff --git a/src/mlpack/CMakeLists.txt b/src/mlpack/CMakeLists.txt index c21bae866c..4c3f13034b 100644 --- a/src/mlpack/CMakeLists.txt +++ b/src/mlpack/CMakeLists.txt @@ -160,7 +160,7 @@ endif () # recurse into methods/. If not, this function is empty. post_markdown_setup() -# Installing CMake Helper Files +# Installing CMake Helper Files for mlpack-config.cmake include(${PROJECT_SOURCE_DIR}/CMake/CMakeExtras.cmake)