Initial commit
This commit is contained in:
commit
f38ff5fbc2
18 changed files with 1016 additions and 0 deletions
35
ObjQt.pro
Normal file
35
ObjQt.pro
Normal file
|
@ -0,0 +1,35 @@
|
|||
TEMPLATE = lib
|
||||
TARGET = ObjQt
|
||||
DESTDIR = build
|
||||
OBJECTS_DIR = build
|
||||
QT += core gui widgets
|
||||
|
||||
INCLUDEPATH += common \
|
||||
QtCore \
|
||||
QtGui \
|
||||
QtWidgets
|
||||
|
||||
HEADERS += common/helpers.h \
|
||||
common/QtOwnershipManaging.h \
|
||||
QtCore/QtChildEvent.h \
|
||||
QtCore/QtCoreApplication.h \
|
||||
QtCore/QtEvent.h \
|
||||
QtCore/QtObject.h \
|
||||
QtCore/QtThread.h \
|
||||
QtGui/QtGuiApplication.h \
|
||||
QtWidgets/QtApplication.h
|
||||
|
||||
SOURCES += QtCore/QtChildEvent.mm \
|
||||
QtCore/QtCoreApplication.mm \
|
||||
QtCore/QtEvent.mm \
|
||||
QtCore/QtObject.mm \
|
||||
QtCore/QtThread.mm \
|
||||
QtGui/QtGuiApplication.mm \
|
||||
QtWidgets/QtApplication.mm
|
||||
|
||||
QMAKE_CXXFLAGS += $$system("objfw-config --cppflags --objcflags --cxxflags")
|
||||
QMAKE_CXXFLAGS_WARN_ON = -Wall \
|
||||
-Werror \
|
||||
-Wsemicolon-before-method-body \
|
||||
-Wobjc-missing-property-synthesis
|
||||
LIBS += $$system("objfw-config --ldflags --libs")
|
Loading…
Add table
Add a link
Reference in a new issue