Warning, /games/ksirk/ksirk/iris/iris.pri is written in an unsupported language. File is not indexed.

0001 IRIS_BASE = $$PWD
0002 include(common.pri)
0003 
0004 CONFIG *= depend_prl
0005 
0006 INCLUDEPATH += $$IRIS_BASE/include $$IRIS_BASE/include/iris $$IRIS_BASE/src
0007 
0008 iris_bundle:{
0009         include(src/xmpp/xmpp.pri)
0010 }
0011 else {
0012         LIBS += -L$$IRIS_BASE/lib -liris
0013 }
0014 
0015 # qt < 4.4 doesn't enable link_prl by default.  we could just enable it,
0016 #   except that in 4.3 or earlier the link_prl feature is too aggressive and
0017 #   pulls in unnecessary deps.  so, for 4.3 and earlier, we'll just explicitly
0018 #   specify the stuff the prl should have given us.
0019 # also, mingw seems to have broken prl support??
0020 win32-g++|contains($$list($$[QT_VERSION]), 4.0.*|4.1.*|4.2.*|4.3.*) {
0021         DEFINES += IRISNET_STATIC             # from irisnet
0022         LIBS += -L$$IRIS_BASE/lib -lirisnet   # from iris
0023         windows:LIBS += -lWs2_32 -lAdvapi32   # from jdns
0024 }