https://github.com/jkriege2/QuickFit3
Raw File
Tip revision: 2cd68c4b3fb2bab19c56884a0a46b4657f02b59e authored by kriegerj on 14 August 2015, 17:48:18 UTC
table:
Tip revision: 2cd68c4
libquickfit.pri
#
#    Copyright (c) 2008-2015 Jan W. Krieger (<jan@jkrieger.de>, <j.krieger@dkfz.de>), German Cancer Research Center (DKFZ) & IWR, University of Heidelberg
#
#	 
#
#    This file is part of QuickFit 3 (http://www.dkfz.de/Macromol/quickfit).
#
#    This software is free software: you can redistribute it and/or modify
#    it under the terms of the GNU Lesser General Public License (LGPL) as published by
#    the Free Software Foundation, either version 2 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU Lesser General Public License (LGPL) for more details.
#
#    You should have received a copy of the GNU Lesser General Public License (LGPL)
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

#message("!!! !!! NOW IN libquickfit.pri  PWD=$$PWD  LIBS=$$LIBS  QFOUTPUT=$$QFOUTPUT")
macx {
    !contains( LIBS, quickfit3lib ) {
        QMAKE_LFLAGS += -F$$QFOUTPUT
        LIBS += -framework quickfit3lib
    }
} else {
    !contains( LIBS, -lquickfit3lib ) {
        LIBS += -L$$QFOUTPUT  -lquickfit3lib
    }
}

INCLUDEPATH += $$PWD/lib/

HEADERS +=

#message("!!! !!! NOW LEAVING libquickfit.pri  PWD=$$PWD  LIBS=$$LIBS  QFOUTPUT=$$QFOUTPUT")

back to top