#------------------------------------------------- # # Project created by QtCreator 2012-05-14T18:39:52 # #------------------------------------------------- QT += core gui webkit network CONFIG += console TARGET = ClientKit TEMPLATE = app macx: LIBS += -framework CoreFoundation SOURCES += main.cpp\ mainwindow.cpp \ clientkitapi.cpp \ p4connection.cpp \ systemapi.cpp \ p4api.cpp \ guiapi.cpp \ p4commandrunner.cpp \ newp4connectiondialog.cpp \ window.cpp HEADERS += mainwindow.h \ clientkitapi.h \ p4connection.h \ systemapi.h \ p4api.h \ guiapi.h \ p4commandrunner.h \ newp4connectiondialog.h \ window.h FORMS += mainwindow.ui \ newp4connectiondialog.ui RESOURCES += \ resources/clientkitresources.qrc INCLUDEPATH += resources/_appDataCache/* macx: LIBS += -L$$PWD/../../../../../../../../../usr/local/p4api/lib/ -lclient macx: LIBS += -L$$PWD/../../../../../../../../../usr/local/p4api/lib/ -lp4sslstub macx: LIBS += -L$$PWD/../../../../../../../../../usr/local/p4api/lib/ -lrpc macx: LIBS += -L$$PWD/../../../../../../../../../usr/local/p4api/lib/ -lsupp INCLUDEPATH += $$PWD/../../../../../../../../../usr/local/p4api/include/p4 DEPENDPATH += $$PWD/../../../../../../../../../usr/local/p4api/include macx: PRE_TARGETDEPS += $$PWD/../../../../../../../../../usr/local/p4api/lib/libclient.a macx: PRE_TARGETDEPS += $$PWD/../../../../../../../../../usr/local/p4api/lib/libp4sslstub.a macx: PRE_TARGETDEPS += $$PWD/../../../../../../../../../usr/local/p4api/lib/librpc.a macx: PRE_TARGETDEPS += $$PWD/../../../../../../../../../usr/local/p4api/lib/libsupp.a
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#3 | 8115 | David George |
a bunch of changes to the GuiApi - probably bound to change, though, so use at your own risk! beginnings of migrating to an "all windows are created equal" model. (as opposed to a MainWindow) removing the unreliable Qt execution of the .js methods - please include in your HTML (<script type="text/javascript" src="qrc:/js/ClientKitMethods.js"></script>) |
||
#2 | 8104 | David George |
merged .runAsync and .run into one method that runs sync/async depending on the presence of a callback function argument. restored some storage-related QWebSettings |
||
#1 | 8101 | David George |
beginning of _massive_ re-factoring your current build settings will fail create a new project from newly added .pro file (but change its p4api paths to match your old one) look for updated README as soon as Dave agrees that changes are _indeed_ for the best (Changes by Jaimen) |