Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
502e156e
Commit
502e156e
authored
Sep 07, 2016
by
Guillaume Sylvand
Browse files
CMakeLists.txt for OSX compilation : add INSTALL_NAME_DIR property in all libraries
parent
4d8df045
Changes
5
Hide whitespace changes
Inline
Side-by-side
compute/CMakeLists.txt
View file @
502e156e
...
...
@@ -255,6 +255,7 @@ add_dependencies(chameleon
set_property
(
TARGET chameleon PROPERTY LINKER_LANGUAGE Fortran
)
set_property
(
TARGET chameleon PROPERTY Fortran_MODULE_DIRECTORY
"
${
CMAKE_BINARY_DIR
}
/include"
)
set_property
(
TARGET chameleon PROPERTY INSTALL_NAME_DIR
"
${
CMAKE_INSTALL_PREFIX
}
/lib"
)
# installation
# ------------
...
...
coreblas/compute/CMakeLists.txt
View file @
502e156e
...
...
@@ -101,6 +101,7 @@ set(COREBLAS_SRCS
add_library
(
coreblas
${
COREBLAS_SRCS
}
)
add_dependencies
(
coreblas coreblas_include
)
set_property
(
TARGET coreblas PROPERTY LINKER_LANGUAGE Fortran
)
set_property
(
TARGET coreblas PROPERTY INSTALL_NAME_DIR
"
${
CMAKE_INSTALL_PREFIX
}
/lib"
)
# # Dependencies step
# # -----------------
...
...
runtime/parsec/CMakeLists.txt
View file @
502e156e
...
...
@@ -164,6 +164,7 @@ set(RUNTIME_SRCS
# -----------
add_library
(
chameleon_parsec
${
RUNTIME_SRCS
}
)
set_property
(
TARGET chameleon_parsec PROPERTY LINKER_LANGUAGE Fortran
)
set_property
(
TARGET chameleon_parsec PROPERTY INSTALL_NAME_DIR
"
${
CMAKE_INSTALL_PREFIX
}
/lib"
)
add_dependencies
(
chameleon_parsec
chameleon_include
...
...
runtime/quark/CMakeLists.txt
View file @
502e156e
...
...
@@ -161,6 +161,7 @@ set(RUNTIME_SRCS
# -----------
add_library
(
chameleon_quark
${
RUNTIME_SRCS
}
)
set_property
(
TARGET chameleon_quark PROPERTY LINKER_LANGUAGE Fortran
)
set_property
(
TARGET chameleon_quark PROPERTY INSTALL_NAME_DIR
"
${
CMAKE_INSTALL_PREFIX
}
/lib"
)
add_dependencies
(
chameleon_quark
chameleon_include
...
...
runtime/starpu/CMakeLists.txt
View file @
502e156e
...
...
@@ -182,6 +182,7 @@ set(RUNTIME_SRCS
# -----------
add_library
(
chameleon_starpu
${
RUNTIME_SRCS
}
)
set_property
(
TARGET chameleon_starpu PROPERTY LINKER_LANGUAGE Fortran
)
set_property
(
TARGET chameleon_starpu PROPERTY INSTALL_NAME_DIR
"
${
CMAKE_INSTALL_PREFIX
}
/lib"
)
add_dependencies
(
chameleon_starpu
chameleon_include
...
...
Write
Preview
Markdown
is supported
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