Skip to content

Commit

Permalink
installer for muparser
Browse files Browse the repository at this point in the history
  • Loading branch information
lformaggia committed Feb 4, 2019
1 parent d0d0878 commit 068b8be
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions install
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

0 comments on commit 068b8be

Please sign in to comment.