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

« back to all changes in this revision

Viewing changes to cmake/MacOSX/TOPPView-resources/TOPPView.app/Contents/MacOS/TOPPView

  • 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 TOPPView
3
 
 
4
 
export OPENMS_TOPP_PATH=`dirname $0`
5
 
 
6
 
#echo $OPENMS_TOPP_PATH
7
 
 
8
 
## we need to set the DYLIB_LIBRARY_PATH for the TOPP-tools to execute properly
9
 
#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
10
 
 
11
 
## setting of the OpenMS data path to the share directory
12
 
#export OPENMS_DATA_PATH=${OPENMS_TOPP_PATH}/../../../share/OpenMS
13
 
 
14
 
## we need to set the path variable accordingly
15
 
#export PATH=${OPENMS_TOPP_PATH}/../../../TOPP:$PATH
16
 
 
17
 
## start TOPPView
18
 
${OPENMS_TOPP_PATH}/../../../TOPPView $@
19
 
 
20