Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ADIOS2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Podhorszki, Norbert
ADIOS2
Commits
77d82b20
Commit
77d82b20
authored
7 years ago
by
Podhorszki, Norbert
Browse files
Options
Downloads
Patches
Plain Diff
Add adios1::adios dependency only to the MPI build for now, but not to the NOMPI build
parent
5bd11bfa
No related branches found
No related tags found
1 merge request
!43
Adios1 cleanup
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/CMakeLists.txt
+10
-12
10 additions, 12 deletions
source/CMakeLists.txt
with
10 additions
and
12 deletions
source/CMakeLists.txt
+
10
−
12
View file @
77d82b20
...
...
@@ -40,16 +40,6 @@ foreach(adios2_target IN LISTS adios2_targets)
PUBLIC
${
ADIOS_SOURCE_DIR
}
/include
)
if
(
ADIOS_USE_ADIOS1
)
find_package
(
ADIOS REQUIRED
)
target_sources
(
${
adios2_target
}
PRIVATE
engine/adios1/ADIOS1Reader.cpp
engine/adios1/ADIOS1Writer.cpp
)
target_compile_definitions
(
${
adios2_target
}
PRIVATE ADIOS_HAVE_ADIOS1
)
target_link_libraries
(
${
adios2_target
}
PRIVATE adios::adios
)
endif
()
if
(
ADIOS_USE_DataMan
)
find_package
(
DataMan REQUIRED
)
target_sources
(
${
adios2_target
}
PRIVATE
...
...
@@ -79,6 +69,14 @@ if(ADIOS_USE_MPI)
target_include_directories
(
adios2 PUBLIC
${
MPI_C_INCLUDE_PATH
}
)
target_compile_definitions
(
adios2 PUBLIC ADIOS_HAVE_MPI
)
target_link_libraries
(
adios2 PUBLIC
${
MPI_C_LIBRARIES
}
)
else
()
target_sources
(
adios2 PRIVATE mpidummy.cpp
)
if
(
ADIOS_USE_ADIOS1
)
find_package
(
ADIOS1 REQUIRED
)
target_sources
(
adios2 PRIVATE
engine/adios1/ADIOS1Reader.cpp
engine/adios1/ADIOS1Writer.cpp
)
target_compile_definitions
(
adios2 PRIVATE ADIOS_HAVE_ADIOS1
)
target_link_libraries
(
adios2 PRIVATE adios1::adios
)
endif
()
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