Ticket #23929: patch-build.conf.example.diff
File patch-build.conf.example.diff, 5.3 KB (added by nicos_pavlov@…, 15 years ago) |
---|
-
build.conf.example
old new 9 9 # Global include path which is always added at the end of the INCLUDEPATH 10 10 SYS_INCLUDEPATH = /opt/local/include 11 11 # Global lib path and libs which is ls always added at the end of LIBS 12 SYS_LIBS = -L/opt/local/lib 12 SYS_LIBS = -L/opt/local/lib -lz 13 13 14 14 ########################################################## 15 15 ## muParser (http://muparser.sourceforge.net/) 16 16 ########################################################## 17 17 18 18 # include path. leave it blank to use SYS_INCLUDE 19 MUPARSER_INCLUDEPATH = $$QTI_ROOT/3rdparty/muparser/include19 #MUPARSER_INCLUDEPATH = $$QTI_ROOT/3rdparty/muparser/include 20 20 # link statically against a copy in 3rdparty/ 21 MUPARSER_LIBS = $$QTI_ROOT/3rdparty/muparser/lib/libmuparser.a21 #MUPARSER_LIBS = $$QTI_ROOT/3rdparty/muparser/lib/libmuparser.a 22 22 # or dynamically against a system-wide installation 23 #MUPARSER_LIBS = -lmuparser23 MUPARSER_LIBS = -lmuparser 24 24 25 25 ########################################################## 26 26 ## GNU Sientific Library (http://www.gnu.org/software/gsl/) 27 27 ########################################################## 28 28 29 29 # include path. leave it blank to use SYS_INCLUDE 30 GSL_INCLUDEPATH = $$QTI_ROOT/3rdparty/gsl/include30 #GSL_INCLUDEPATH = $$QTI_ROOT/3rdparty/gsl/include 31 31 # link statically against a copy in 3rdparty/ 32 GSL_LIBS = $$QTI_ROOT/3rdparty/gsl/lib/libgsl.a \33 $$QTI_ROOT/3rdparty/gsl/lib/libgslcblas.a32 #GSL_LIBS = $$QTI_ROOT/3rdparty/gsl/lib/libgsl.a \ 33 # $$QTI_ROOT/3rdparty/gsl/lib/libgslcblas.a 34 34 # or dynamically against a system-wide installation 35 #GSL_LIBS = -lgsl -lgslcblas35 GSL_LIBS = -lgsl -lgslcblas 36 36 37 37 ########################################################## 38 38 ## Boost libraries (http://www.boost.org/) 39 39 ########################################################## 40 40 41 41 # include path. leave it blank to use SYS_INCLUDE 42 BOOST_INCLUDEPATH = $$QTI_ROOT/3rdparty/boost42 #BOOST_INCLUDEPATH = $$QTI_ROOT/3rdparty/boost 43 43 # link statically against a copy in 3rdparty/ 44 unix: BOOST_LIBS = $$QTI_ROOT/3rdparty/boost/lib/libboost_date_time-gcc43-mt-1_38.a \45 $$QTI_ROOT/3rdparty/boost/lib/libboost_thread-gcc43-mt-1_38.a46 win32:BOOST_LIBS = $$QTI_ROOT/3rdparty/boost/lib/libboost_date_time-mgw34-mt.lib \47 $$QTI_ROOT/3rdparty/boost/lib/libboost_thread-mgw34-mt.lib44 #unix: BOOST_LIBS = $$QTI_ROOT/3rdparty/boost/lib/libboost_date_time-gcc43-mt-1_38.a \ 45 # $$QTI_ROOT/3rdparty/boost/lib/libboost_thread-gcc43-mt-1_38.a 46 #win32:BOOST_LIBS = $$QTI_ROOT/3rdparty/boost/lib/libboost_date_time-mgw34-mt.lib \ 47 # $$QTI_ROOT/3rdparty/boost/lib/libboost_thread-mgw34-mt.lib 48 48 # or dynamically against a system-wide installation 49 #BOOST_LIBS = -lboost_date_time-mt -lboost_thread-mt49 BOOST_LIBS = -lboost_date_time-mt -lboost_thread-mt 50 50 51 51 ########################################################## 52 52 ## QWT - use local copy till upstream catches up … … 75 75 ########################################################### 76 76 77 77 # include path. 78 XLS_INCLUDEPATH = $$QTI_ROOT/3rdparty/libxls/include/78 #XLS_INCLUDEPATH = $$QTI_ROOT/3rdparty/libxls/include/ 79 79 # link locally against a copy in 3rdparty/ 80 XLS_LIBS = $$QTI_ROOT/3rdparty/libxls/lib/libxlsreader.a80 #XLS_LIBS = $$QTI_ROOT/3rdparty/libxls/lib/libxlsreader.a 81 81 82 82 ########################################################### 83 83 ## QuaZIP - optional. you don't have to set these variables … … 85 85 ########################################################### 86 86 87 87 # include path. 88 QUAZIP_INCLUDEPATH = $$QTI_ROOT/3rdparty/quazip/quazip/88 #QUAZIP_INCLUDEPATH = $$QTI_ROOT/3rdparty/quazip/quazip/ 89 89 # link locally against a copy in 3rdparty/ 90 QUAZIP_LIBS = $$QTI_ROOT/3rdparty/quazip/lib/libquazip.a90 #QUAZIP_LIBS = $$QTI_ROOT/3rdparty/quazip/lib/libquazip.a 91 91 92 92 ########################################################## 93 93 ## libpng - optional. you don't have to set these variables 94 94 ########################################################## 95 95 96 96 # include path. leave it blank to use SYS_INCLUDE 97 LIBPNG_INCLUDEPATH = $$QTI_ROOT/3rdparty/libpng/97 #LIBPNG_INCLUDEPATH = $$QTI_ROOT/3rdparty/libpng/ 98 98 # link statically against a copy in 3rdparty/ 99 LIBPNG_LIBS = $$QTI_ROOT/3rdparty/libpng/libpng.a99 #LIBPNG_LIBS = $$QTI_ROOT/3rdparty/libpng/libpng.a 100 100 # or dynamically against a system-wide installation 101 #LIBPNG_LIBS = -lpng101 LIBPNG_LIBS = -lpng 102 102 103 103 ########################################################## 104 104 ## EmfEngine - optional. you don't have to set these variables … … 106 106 ########################################################## 107 107 108 108 # include path. 109 EMF_ENGINE_INCLUDEPATH = $$QTI_ROOT/3rdparty/EmfEngine/src109 #EMF_ENGINE_INCLUDEPATH = $$QTI_ROOT/3rdparty/EmfEngine/src 110 110 # link locally against a copy in 3rdparty/ 111 EMF_ENGINE_LIBS = $$QTI_ROOT/3rdparty/EmfEngine/libEmfEngine.a111 #EMF_ENGINE_LIBS = $$QTI_ROOT/3rdparty/EmfEngine/libEmfEngine.a 112 112 113 113 ########################################################## 114 114 ## python - only used if python is needed … … 132 132 contains( TARGET, qtiplot ) { 133 133 # building without muParser doesn't work yet 134 134 SCRIPTING_LANGS += muParser 135 SCRIPTING_LANGS += Python135 # SCRIPTING_LANGS += Python 136 136 137 137 # a console displaying output of scripts; particularly useful on Windows 138 138 # where running QtiPlot from a terminal is inconvenient