Skip to content
Snippets Groups Projects
Commit c99f4373 authored by Hahn, Steven's avatar Hahn, Steven
Browse files

Fix RPATH issues on Ubuntu 18.04

parent 495ae99d
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ mtd_add_qt_library (TARGET_NAME VatesSimpleGuiQtWidgets
@loader_path/../../Contents/Libraries
@loader_path/../../Contents/MacOS
LINUX_INSTALL_RPATH
"\$ORIGIN/../../${LIB_DIR}"
"\$ORIGIN/../${LIB_DIR}"
)
# Set the name of the generated library
......
......@@ -136,7 +136,7 @@ mtd_add_qt_library (TARGET_NAME VatesSimpleGuiViewWidgets
@loader_path/../../Contents/MacOS
@loader_path/../../Contents/Libraries
LINUX_INSTALL_RPATH
"\$ORIGIN/../../${LIB_DIR};\$ORIGIN"
"\$ORIGIN/../${LIB_DIR};\$ORIGIN"
)
# Set the name of the generated library
......
......@@ -535,7 +535,7 @@ mtd_add_qt_library (TARGET_NAME MantidQtWidgetsCommon
@loader_path/../MacOS
@loader_path/../Libraries
LINUX_INSTALL_RPATH
"\$ORIGIN/../../${LIB_DIR}"
"\$ORIGIN/../${LIB_DIR}"
)
###########################################################################
......
......@@ -37,6 +37,7 @@ mtd_add_qt_library (TARGET_NAME MantidQtWidgetsFactory
MantidQtWidgetsCommon
MantidQtWidgetsLegacyQwt
MantidQtWidgetsSliceViewer
LINUX_INSTALL_RPATH
"\$ORIGIN/../${LIB_DIR}"
)
......@@ -80,7 +80,7 @@ mtd_add_qt_library (TARGET_NAME MantidQtWidgetsLegacyQwt
OSX_INSTALL_RPATH
@loader_path/../MacOS
LINUX_INSTALL_RPATH
"\$ORIGIN/../../${LIB_DIR}"
"\$ORIGIN/../${LIB_DIR}"
)
###########################################################################
......
......@@ -141,7 +141,7 @@ mtd_add_qt_library (TARGET_NAME MantidQtWidgetsSliceViewer
OSX_INSTALL_RPATH
loader_path/../MacOS
LINUX_INSTALL_RPATH
"\$ORIGIN/../../${LIB_DIR}"
"\$ORIGIN/../${LIB_DIR}"
)
###########################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment