Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
2d92f08e
Commit
2d92f08e
authored
11 months ago
by
Wuttke, Joachim
Committed by
Wuttke, Joachim
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
target_link_options instead of setting property
parent
482fe998
No related branches found
Branches containing commit
No related tags found
1 merge request
!2489
cleanup -rpath directive in App/CMakeLists
Pipeline
#138648
passed
11 months ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
App/CMakeLists.txt
+6
-9
6 additions, 9 deletions
App/CMakeLists.txt
cmake/BornAgain/MakeLib.cmake
+6
-5
6 additions, 5 deletions
cmake/BornAgain/MakeLib.cmake
with
12 additions
and
14 deletions
App/CMakeLists.txt
+
6
−
9
View file @
2d92f08e
...
...
@@ -59,8 +59,8 @@ if(WIN32)
endif
()
if
(
LINUX
)
s
et
(
link_
flags
"-Wl,--disable-new-dtags,-rpath,
\$
ORIGIN/../lib"
)
set_target_properties
(
${
executable_name
}
PROPERTIES LINK_OPTIONS
${
link_flags
}
)
targ
et
_
link_
options
(
${
executable_name
}
PRIVATE
"-Wl,--disable-new-dtags,-rpath=
\$
ORIGIN/../lib"
)
endif
()
if
(
APPLE
)
...
...
@@ -71,14 +71,11 @@ if(APPLE)
PROPERTIES MACOSX_BUNDLE_INFO_PLIST
${
BUILD_VAR_DIR
}
/Info.plist
)
if
(
BA_APPLE_BUNDLE
)
set
(
link_flags
"-Wl,-rpath,@loader_path/../lib -Wl,-rpath,@loader_path/../Frameworks/ \
-Wl,-rpath,@loader_path/../lib/BornAgain-
${
PROJECT_VERSION
}
/"
)
else
()
set
(
link_flags
"-Wl,-rpath,\
@loader_path/../../../lib/BornAgain-
${
PROJECT_VERSION
}
/"
)
target_link_options
(
${
executable_name
}
PRIVATE
"-Wl,-rpath,@loader_path/../lib:@loader_path/../Frameworks"
)
endif
()
set_target_properties
(
${
executable_name
}
PROPERTIES LINK_OPTIONS
${
link_flags
}
)
target_link_options
(
${
executable_name
}
PRIVATE
"-Wl,-rpath,@loader_path/../../../lib/BornAgain-
${
PROJECT_VERSION
}
"
)
endif
()
# -----------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
cmake/BornAgain/MakeLib.cmake
+
6
−
5
View file @
2d92f08e
...
...
@@ -68,17 +68,18 @@ function(MakeLib lib)
get_target_property
(
lib_dir
${
lib
}
LIBRARY_OUTPUT_DIRECTORY
)
get_target_property
(
lib_name
${
lib
}
_BASEFILENAME
)
set
(
BornAgain_LIBRARIES
"$CACHE{BornAgain_LIBRARIES};
${
lib_dir
}
/
${
lib_name
}
"
CACHE INTERNAL
"BornAgain libraries"
)
set
(
BornAgain_LIBRARIES
"$CACHE{BornAgain_LIBRARIES};
${
lib_dir
}
/
${
lib_name
}
"
CACHE INTERNAL
"BornAgain libraries"
)
# Set runtime-location of library dependencies
if
(
LINUX
)
s
et
(
link_
flags
"-Wl,--disable-new-dtags,-rpath,
\$
ORIGIN:
\$
ORIGIN/extra"
)
set_target_properties
(
${
lib
}
PROPERTIES LINK_OPTIONS
${
link_flags
}
)
targ
et
_
link_
options
(
${
lib
}
PRIVATE
"-Wl,--disable-new-dtags,-rpath,
\$
ORIGIN:
\$
ORIGIN/extra"
)
endif
()
if
(
APPLE
AND
(
BA_APPLE_BUNDLE OR BA_WHEEL
))
s
et
(
link_
flags
"-Wl,-rpath,@loader_path -Wl,-rpath,@loader_path/extra"
)
set_target_properties
(
${
lib
}
PROPERTIES LINK_OPTIONS
${
link_flags
}
)
targ
et
_
link_
options
(
${
lib
}
PRIVATE
"-Wl,-rpath,@loader_path:@loader_path/extra"
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment