Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Chameleon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
d6624e2f
Commit
d6624e2f
authored
Feb 04, 2015
by
PRUVOST Florent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
find runtimes dependencies not required in order to make verbose mode usefull
parent
cb656faf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
CMakeLists.txt
CMakeLists.txt
+3
-3
No files found.
CMakeLists.txt
View file @
d6624e2f
...
...
@@ -316,7 +316,7 @@ if(NOT CHAMELEON_SIMULATION)
# CHAMELEON depends on LAPACKE
#-----------------------------
find_package
(
LAPACKEXT
)
find_package
(
LAPACKEXT
REQUIRED
)
if
(
LAPACK_FOUND AND LAPACK_LIBRARY_DIRS
)
# the RPATH to be used when installing
list
(
APPEND CMAKE_INSTALL_RPATH
"
${
LAPACK_LIBRARY_DIRS
}
"
)
...
...
@@ -527,7 +527,7 @@ if( CHAMELEON_SCHED_STARPU )
list
(
APPEND STARPU_COMPONENT_LIST
"FXT"
)
endif
()
find_package
(
STARPU
${
CHAMELEON_STARPU_VERSION
}
REQUIRED
find_package
(
STARPU
${
CHAMELEON_STARPU_VERSION
}
COMPONENTS
${
STARPU_COMPONENT_LIST
}
)
# Add definition and include_dir if found
...
...
@@ -639,7 +639,7 @@ endif( CHAMELEON_SCHED_STARPU )
# try to find quark runtime
if
(
CHAMELEON_SCHED_QUARK
)
find_package
(
QUARK
REQUIRED
COMPONENTS HWLOC
)
find_package
(
QUARK COMPONENTS HWLOC
)
# Add definition and include_dir if found
if
(
QUARK_FOUND
)
...
...
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