~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to cmake/MacOSX/TOPPAS-resources/TOPPAS

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2013-12-20 11:30:16 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131220113016-wre5g9bteeheq6he
Tags: 1.11.1-3
* remove version number from libbost development package names;
* ensure that AUTHORS is correctly shipped in all packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
# bash script which sets the correct paths and executes TOPPAS
3
 
 
4
 
export OPENMS_TOPP_PATH=`dirname $0`
5
 
 
6
 
## we need to set the DYLIB_LIBRARY_PATH for the TOPP-tools to execute properly
7
 
export DYLD_LIBRARY_PATH=${OPENMS_TOPP_PATH}/../../../lib/:${OPENMS_TOPP_PATH}/../../../lib/QtCore.framework/Versions/4/:${OPENMS_TOPP_PATH}/../../../lib/QtGui.framework/Versions/4/:${OPENMS_TOPP_PATH}/../../../lib/QtNetwork.framework/Versions/4/:${OPENMS_TOPP_PATH}/../../../lib/QtOpenGL.framework/Versions/4/:${OPENMS_TOPP_PATH}/../../../lib/QtSql.framework/Versions/4/:${OPENMS_TOPP_PATH}/../../../lib/QtXml.framework/Versions/4/:$DYLIB_LIBRARY_PATH
8
 
 
9
 
## setting of the OpenMS data path to the share directory
10
 
export OPENMS_DATA_PATH=${OPENMS_TOPP_PATH}/../../../share/OpenMS
11
 
 
12
 
## we need to set the path variable accordingly
13
 
export PATH=${OPENMS_TOPP_PATH}/../../../TOPP:$PATH
14
 
 
15
 
## start TOPPAS
16
 
cd ${OPENMS_TOPP_PATH}/../../../TOPP/
17
 
TOPPAS $@
18
 
 
19