summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Linke <christian.linke@bmw.de>2015-09-04 09:22:29 +0100
committerChristian Linke <christian.linke@bmw.de>2015-09-04 09:22:29 +0100
commit31cb5ef306617fdd563deb8262931fa8a27037df (patch)
tree4eca51b274c0c0256a2cb3dbf1a1cefa106364e0
parent588cfa1fd5fe029d60dbb24f3014f33287a33061 (diff)
downloadaudiomanager-31cb5ef306617fdd563deb8262931fa8a27037df.tar.gz
Change order of include of subdirectories...
-rwxr-xr-xCMakeLists.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 55530c4..4819c0d 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -235,7 +235,13 @@ write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/AudioManagerVersion.cmake
VERSION ${DAEMONVERSION}
COMPATIBILITY SameMajorVersion )
-
+
+
+add_subdirectory (AudioManagerDaemon)
+
+if(EXISTS "${CMAKE_SOURCE_DIR}/Plugins/")
+ add_subdirectory (${CMAKE_SOURCE_DIR}/Plugins)
+endif(EXISTS "${CMAKE_SOURCE_DIR}/Plugins/")
configure_file( ${CMAKE_SOURCE_DIR}/AudioManagerDaemon/docx/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/DoxyFile )
configure_file( ${CMAKE_SOURCE_DIR}/cmake/config.cmake.in ${CMAKE_BINARY_DIR}/include/audiomanagerconfig.h )
@@ -252,12 +258,6 @@ install(DIRECTORY ${CMAKE_SOURCE_DIR}/tclap-1.2.1/include/tclap
DESTINATION ${CMAKE_INSTALL_PREFIX}/include/${LIB_INSTALL_SUFFIX}
COMPONENT dev)
-add_subdirectory (AudioManagerDaemon)
-
-if(EXISTS "${CMAKE_SOURCE_DIR}/Plugins/")
- add_subdirectory (${CMAKE_SOURCE_DIR}/Plugins)
-endif(EXISTS "${CMAKE_SOURCE_DIR}/Plugins/")
-
if(WITH_DOCUMENTATION)
find_package(Doxygen)