COMP: Disable rpath with spaces on some systems.

This commit is contained in:
Brad King 2007-02-26 10:46:19 -05:00
parent 334e6d6801
commit cca4801fa7
1 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,10 @@
PROJECT(SUBDIR)
# Some systems do not seem to support rpath with spaces.
IF("${CMAKE_SYSTEM}" MATCHES "IRIX|QNX")
SET(CMAKE_SKIP_BUILD_RPATH 1)
ENDIF("${CMAKE_SYSTEM}" MATCHES "IRIX|QNX")
# be able to see output from make on dashboards
SET(CMAKE_VERBOSE_MAKEFILE 1)
SUBDIRS("Executable Sources" "Some(x86) Sources" EXCLUDE_FROM_ALL "Some Examples")