Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GeoModel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
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
GeoModelDev
GeoModel
Commits
3a807659
Commit
3a807659
authored
4 years ago
by
Riccardo Maria Bianchi
Browse files
Options
Downloads
Patches
Plain Diff
Fix README: add note that the extra step is only needed on macOS
parent
d0714870
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!67
Bringing GeoModelXML into GeoModel
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GeoModelXML/README.md
+10
-3
10 additions, 3 deletions
GeoModelXML/README.md
with
10 additions
and
3 deletions
GeoModelXML/README.md
+
10
−
3
View file @
3a807659
...
@@ -24,12 +24,19 @@ cmake -DCMAKE_INSTALL_PREFIX=../install/ -DGEOMODELATLAS_BUILD_GEOMODELXML=1 ../
...
@@ -24,12 +24,19 @@ cmake -DCMAKE_INSTALL_PREFIX=../install/ -DGEOMODELATLAS_BUILD_GEOMODELXML=1 ../
make
make
make install
make install
# EXTRA STEP: Add a rpath, only needed when using a local 'install' folder
install_name_tool -add_rpath ../install/lib ../install/lib/libGMXPlugin.dylib
cd ..
cd ..
```
```
### Post-build setup
**NOTE:**
This is only needed on macOS, and only when using a local
`install`
folder (instead of system folders like
`usr/local/`
).
This extra step tells the
`GMXPlugin`
where it can find the other libraries, when loaded as a plugin at runtime:
```
# EXTRA STEP: Add a rpath, only needed on macOS and when using a local 'install' folder
install_name_tool -add_rpath install/lib install/lib/libGMXPlugin.dylib
```
## How to run it
## How to run it
...
...
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