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
43563dd0
Commit
43563dd0
authored
7 years ago
by
Atkins, Charles Vernon
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #157 from williamfgc/adios2ht
Adios2ht
parents
fd2926f7
415b603e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/heatTransfer/CMakeLists.txt
+2
-7
2 additions, 7 deletions
examples/heatTransfer/CMakeLists.txt
examples/heatTransfer/read/CMakeLists.txt
+5
-5
5 additions, 5 deletions
examples/heatTransfer/read/CMakeLists.txt
with
7 additions
and
12 deletions
examples/heatTransfer/CMakeLists.txt
+
2
−
7
View file @
43563dd0
...
@@ -3,10 +3,5 @@
...
@@ -3,10 +3,5 @@
# accompanying file Copyright.txt for details.
# accompanying file Copyright.txt for details.
#------------------------------------------------------------------------------#
#------------------------------------------------------------------------------#
add_subdirectory
(
write
)
if
(
ADIOS2_HAVE_ADIOS1
)
add_subdirectory
(
read
)
add_subdirectory
(
write
)
\ No newline at end of file
add_subdirectory
(
read
)
endif
()
This diff is collapsed.
Click to expand it.
examples/heatTransfer/read/CMakeLists.txt
+
5
−
5
View file @
43563dd0
...
@@ -5,7 +5,11 @@
...
@@ -5,7 +5,11 @@
if
(
ADIOS2_HAVE_MPI
)
if
(
ADIOS2_HAVE_MPI
)
if
(
ADIOS2_HAVE_ADIOS1
)
find_package
(
MPI COMPONENTS C REQUIRED
)
find_package
(
MPI COMPONENTS C REQUIRED
)
find_package
(
ADIOS1 REQUIRED
)
add_executable
(
heatTransfer_read_adios2 heatRead_adios2.cpp PrintData.cpp
)
add_executable
(
heatTransfer_read_adios2 heatRead_adios2.cpp PrintData.cpp
)
target_include_directories
(
heatTransfer_read_adios2
target_include_directories
(
heatTransfer_read_adios2
PRIVATE
${
MPI_C_INCLUDE_PATH
}
PRIVATE
${
MPI_C_INCLUDE_PATH
}
...
@@ -13,9 +17,6 @@ if(ADIOS2_HAVE_MPI)
...
@@ -13,9 +17,6 @@ if(ADIOS2_HAVE_MPI)
target_link_libraries
(
heatTransfer_read_adios2
target_link_libraries
(
heatTransfer_read_adios2
adios2
${
MPI_C_LIBRARIES
}
adios2
${
MPI_C_LIBRARIES
}
)
)
if
(
ADIOS2_HAVE_ADIOS1
)
find_package
(
ADIOS1 REQUIRED
)
add_executable
(
heatTransfer_read_adios1 heatRead_adios1.cpp PrintData.cpp
)
add_executable
(
heatTransfer_read_adios1 heatRead_adios1.cpp PrintData.cpp
)
target_include_directories
(
heatTransfer_read_adios1
target_include_directories
(
heatTransfer_read_adios1
...
@@ -26,5 +27,4 @@ if(ADIOS2_HAVE_MPI)
...
@@ -26,5 +27,4 @@ if(ADIOS2_HAVE_MPI)
)
)
endif
()
endif
()
endif
()
endif
()
\ No newline at end of file
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