Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
n-body_methods
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
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
CodeVault
hpc-kernels
n-body_methods
Commits
3821e45b
Commit
3821e45b
authored
8 years ago
by
Paul Heinzlreiter
Browse files
Options
Downloads
Patches
Plain Diff
* working on cmake config
parent
39822222
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bh_tree_mpi/datastructures/CMakeLists.txt
+1
-1
1 addition, 1 deletion
bh_tree_mpi/datastructures/CMakeLists.txt
bh_tree_mpi/simulation/CMakeLists.txt
+2
-1
2 additions, 1 deletion
bh_tree_mpi/simulation/CMakeLists.txt
with
3 additions
and
2 deletions
bh_tree_mpi/datastructures/CMakeLists.txt
+
1
−
1
View file @
3821e45b
file
(
GLOB datastructures_SOURCES *.hpp *.cpp
)
add_library
(
datastructures
${
datastructures_SOURCES
}
)
\ No newline at end of file
add_library
(
datastructures
${
datastructures_SOURCES
}
)
This diff is collapsed.
Click to expand it.
bh_tree_mpi/simulation/CMakeLists.txt
+
2
−
1
View file @
3821e45b
file
(
GLOB simulation_SOURCES *.hpp *.cpp
)
include_directories
(
../datastructures
)
add_library
(
simulation
${
simulation_SOURCES
}
)
\ No newline at end of file
add_library
(
simulation
${
simulation_SOURCES
}
)
target_link_libraries
(
simulation datastructures
${
MPI_LIBRARIES
}
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
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