Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zell
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zell
Software
Zell
Commits
de687bf9
Unverified
Commit
de687bf9
authored
2 years ago
by
Jayesh Badwaik
Browse files
Options
Downloads
Patches
Plain Diff
- bs: remove spurious bs/library.cmake
parent
23cbd0ac
No related branches found
No related tags found
No related merge requests found
Pipeline
#128270
passed
2 years ago
Stage: test
Changes
1
Pipelines
6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
bs/library.cmake
+0
-50
0 additions, 50 deletions
bs/library.cmake
with
0 additions
and
50 deletions
bs/library.cmake
deleted
100644 → 0
+
0
−
50
View file @
23cbd0ac
# --------------------------------------------------------------------------------------------------
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: (C) 2022 Jayesh Badwaik <j.badwaik@fz-juelich.de>
# --------------------------------------------------------------------------------------------------
if
(
BUILD_SOURCE
)
add_library
(
libzell
)
set_target_properties
(
libzell PROPERTIES OUTPUT_NAME zell
)
add_library
(
zell::libzell ALIAS libzell
)
target_link_libraries
(
libzell PRIVATE zell::c
)
target_link_libraries
(
libzell PRIVATE zell::cxx
)
if
(
PROJECT_FEATURE_MPI
)
target_link_libraries
(
libzell PRIVATE tora::mpi
)
endif
()
if
(
PROJECT_FEATURE_CUDA
)
target_link_libraries
(
libzell PRIVATE zell::cuda
)
endif
()
if
(
PROJECT_FEATURE_HIP
)
target_link_libraries
(
libzell PRIVATE zell::hip
)
endif
()
endif
()
if
(
BUILD_TESTING
)
add_library
(
libtestzell
)
set_target_properties
(
libtestzell PROPERTIES OUTPUT_NAME testzell
)
add_library
(
zell::libtestzell ALIAS libtestzell
)
target_link_libraries
(
libtestzell PUBLIC zell::libzell
)
if
(
PROJECT_FEATURE_CUDA
)
target_link_libraries
(
libtestzell PUBLIC zell::cuda
)
endif
()
if
(
PROJECT_FEATURE_HIP
)
target_link_libraries
(
libtestzell PUBLIC zell::hip
)
endif
()
if
(
PROJECT_FEATURE_MPI
)
target_link_libraries
(
libtestzell PUBLIC zell::mpi
)
endif
()
target_link_libraries
(
libtestzell PUBLIC zell::cxx
)
target_link_libraries
(
libtestzell PUBLIC zell::c
)
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