diff options
author | Andrew Stitcher <astitcher@apache.org> | 2009-11-17 06:43:01 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2009-11-17 06:43:01 +0000 |
commit | d57f852d7f3c6853cedbb70b227f93f689435b14 (patch) | |
tree | 8082e957cfb283e6cc821dd62bbb63f7475acd0b /qpid/cpp/BuildInstallSettings.cmake | |
parent | f18346d7560746123af8dfb5bad14fcd72083483 (diff) | |
download | qpid-python-d57f852d7f3c6853cedbb70b227f93f689435b14.tar.gz |
The cmake build should work for any Unix this is not Linux specific
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@881173 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/BuildInstallSettings.cmake')
-rw-r--r-- | qpid/cpp/BuildInstallSettings.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/BuildInstallSettings.cmake b/qpid/cpp/BuildInstallSettings.cmake index b764f35436..e611a141c9 100644 --- a/qpid/cpp/BuildInstallSettings.cmake +++ b/qpid/cpp/BuildInstallSettings.cmake @@ -97,7 +97,7 @@ if (WIN32) "Directory to load broker plug-in modules from")
endif (WIN32)
-if (CMAKE_SYSTEM_NAME STREQUAL Linux)
+if (UNIX)
set (QPID_COMPONENT_BROKER runtime)
set (QPID_COMPONENT_CLIENT runtime)
set (QPID_COMPONENT_COMMON runtime)
@@ -129,4 +129,4 @@ if (CMAKE_SYSTEM_NAME STREQUAL Linux) "Directory to load client plug-in modules from")
set (QPIDD_MODULE_DIR ${QPID_INSTALL_LIBDIR}/qpid/daemon CACHE STRING
"Directory to load broker plug-in modules from")
-endif (CMAKE_SYSTEM_NAME STREQUAL Linux)
+endif (UNIX)
|