forked from beltoforion/muparser
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0d0878
commit 068b8be
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
# | ||
# This is the utility to install muparser for the PACS examples | ||
# | ||
# | ||
# go in the build directory (remove all old files in that dir if needed) | ||
cd build/ | ||
# | ||
# run cmake | ||
# | ||
# this celates the dynamic libraries and optimised code | ||
cmake -D CMAKE_INSTALL_PREFIX=../../../Examples/ ../ | ||
|
||
# uncomment this line (and comment the previous one) | ||
#if you want to debug, this also creates the static libraries | ||
|
||
#cmake -D CMAKE_BUILD_TYPE=Debug -D CMAKE_INSTALL_PREFIX=../../../Examples/ ../ | ||
|
||
#compile | ||
make | ||
#install | ||
make install |