COMP: Disable rpath with spaces on some systems.
This commit is contained in:
parent
334e6d6801
commit
cca4801fa7
Tests/SubDirSpaces
|
@ -1,4 +1,10 @@
|
||||||
PROJECT(SUBDIR)
|
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
|
# be able to see output from make on dashboards
|
||||||
SET(CMAKE_VERBOSE_MAKEFILE 1)
|
SET(CMAKE_VERBOSE_MAKEFILE 1)
|
||||||
SUBDIRS("Executable Sources" "Some(x86) Sources" EXCLUDE_FROM_ALL "Some Examples")
|
SUBDIRS("Executable Sources" "Some(x86) Sources" EXCLUDE_FROM_ALL "Some Examples")
|
||||||
|
|
Loading…
Reference in New Issue