Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
8d27255a
Commit
8d27255a
authored
Feb 19, 2006
by
Brad King
Browse files
ENH: Using CMAKE_SKIP_BUILD_RPATH to test relink support.
parent
8dd00d5b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Tests/SimpleInstall/CMakeLists.txt
View file @
8d27255a
...
...
@@ -4,6 +4,11 @@ SET(CMAKE_VERBOSE_MAKEFILE 1)
SET
(
EXECUTABLE_OUTPUT_PATH
"
${
TestSimpleInstall_BINARY_DIR
}
/ExecPath"
)
SET
(
LIBRARY_OUTPUT_PATH
"
${
EXECUTABLE_OUTPUT_PATH
}
"
)
# Skip generating the rpath pointing at the build tree to make sure
# the executable is installed with the proper rpath in the install
# tree.
SET
(
CMAKE_SKIP_BUILD_RPATH 1
)
# Skip the dependency that causes a build when installing. This
# avoids infinite loops when the post-build rule below installs.
SET
(
CMAKE_SKIP_INSTALL_ALL_DEPENDENCY 1
)
...
...
Tests/SimpleInstallS2/CMakeLists.txt
View file @
8d27255a
...
...
@@ -4,6 +4,11 @@ SET(CMAKE_VERBOSE_MAKEFILE 1)
SET
(
EXECUTABLE_OUTPUT_PATH
"
${
TestSimpleInstall_BINARY_DIR
}
/ExecPath"
)
SET
(
LIBRARY_OUTPUT_PATH
"
${
EXECUTABLE_OUTPUT_PATH
}
"
)
# Skip generating the rpath pointing at the build tree to make sure
# the executable is installed with the proper rpath in the install
# tree.
SET
(
CMAKE_SKIP_BUILD_RPATH 1
)
# Skip the dependency that causes a build when installing. This
# avoids infinite loops when the post-build rule below installs.
SET
(
CMAKE_SKIP_INSTALL_ALL_DEPENDENCY 1
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment