Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Chameleon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
Chameleon
Commits
da0c7350
Commit
da0c7350
authored
7 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup tests
parent
6bcd6425
No related branches found
No related tags found
1 merge request
!55
Fix #42 - HQR header installation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
runtime/starpu/CMakeLists.txt
+16
-13
16 additions, 13 deletions
runtime/starpu/CMakeLists.txt
with
16 additions
and
13 deletions
runtime/starpu/CMakeLists.txt
+
16
−
13
View file @
da0c7350
...
...
@@ -125,16 +125,19 @@ set(RUNTIME_SRCS
# Add library
# -----------
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"
)
#
set_property(TARGET chameleon_starpu PROPERTY LINKER_LANGUAGE Fortran)
#
set_property(TARGET chameleon_starpu PROPERTY INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/lib")
target_link_libraries
(
chameleon_starpu
${
STARPU_LIBRARIES_DEP
}
)
target_link_libraries
(
chameleon_starpu
${
STARPU_LIBRARIES_DEP
}
)
if
(
NOT CHAMELEON_SIMULATION
)
target_link_libraries
(
chameleon_starpu coreblas
)
endif
()
if
(
CHAMELEON_USE_CUDA AND NOT CHAMELEON_SIMULATION
)
target_link_libraries
(
chameleon_starpu cudablas
)
endif
(
CHAMELEON_USE_CUDA AND NOT CHAMELEON_SIMULATION
)
target_link_libraries
(
chameleon_starpu
coreblas
)
if
(
CHAMELEON_USE_CUDA
)
target_link_libraries
(
chameleon_starpu
cudablas
)
endif
(
CHAMELEON_USE_CUDA
)
endif
(
NOT CHAMELEON_SIMULATION
)
add_dependencies
(
chameleon_starpu
chameleon_include
...
...
@@ -144,16 +147,16 @@ add_dependencies(chameleon_starpu
)
if
(
NOT CHAMELEON_SIMULATION
)
add_dependencies
(
chameleon_starpu coreblas_include
)
endif
()
if
(
CHAMELEON_USE_CUDA AND NOT CHAMELEON_SIMULATION
)
add_dependencies
(
chameleon_starpu cudablas_include
)
if
(
CHAMELEON_USE_CUDA
)
add_dependencies
(
chameleon_starpu cudablas_include
)
endif
()
endif
()
# installation
# ------------
install
(
TARGETS chameleon_starpu
DESTINATION lib
)
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
)
###
### END CMakeLists.txt
...
...
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