https://github.com/jkriege2/QuickFit3
Revision d5253eaa37fd55b208c7b709ce6f03fb1f5fe585 authored by Jan W. Krieger on 18 November 2018, 16:51:01 UTC, committed by GitHub on 18 November 2018, 16:51:01 UTC
1 parent fe33f46
Raw File
Tip revision: d5253eaa37fd55b208c7b709ce6f03fb1f5fe585 authored by Jan W. Krieger on 18 November 2018, 16:51:01 UTC
updated link
Tip revision: d5253ea
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