https://github.com/jkriege2/QuickFit3
Raw File
Tip revision: d5253eaa37fd55b208c7b709ce6f03fb1f5fe585 authored by Jan W. Krieger on 18 November 2018, 16:51:01 UTC
updated link
Tip revision: d5253ea
libquickfitwidgets.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 General Public License as published by
#    the Free Software Foundation, either version 3 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 General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

include(libquickfit.pri)

macx {
    !contains( LIBS, quickfit3widgets ) {
        QMAKE_LFLAGS += -F$$QFOUTPUT
        LIBS += -framework quickfit3widgets
    }
} else {
    !contains( LIBS, -lquickfit3widgets ) {
        LIBS += -L$$QFOUTPUT  -lquickfit3widgets
    }
}

INCLUDEPATH += $$QFOUTPUT/../libqf3widgets/

RESOURCES +=

include(quickfit3_configqtwidgets.pri)
back to top