File tree 9 files changed +81
-0
lines changed
9 files changed +81
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ DISTFILES += \
3
+ $$PWD /LICENSE.txt \
4
+ $$PWD /LICENSE.GPL.txt \
5
+ $$PWD /README.md
6
+
7
+ OTHER_FILES += \
8
+ $$DISTFILES \
9
+ $$PWD /CMakeLists.txt
Original file line number Diff line number Diff line change
1
+ TARGET = maxLibQt
2
+ TEMPLATE = subdirs
3
+
4
+ SUBDIRS += src
5
+
6
+ include (maxLibQt.pri )
Original file line number Diff line number Diff line change
1
+ TARGET = maxLibQtCore
2
+ TEMPLATE = lib
3
+
4
+ QT += core
5
+
6
+ DESTDIR = $${OUT_PWD }/bin
7
+ DEFINES += QT_USE_QSTRINGBUILDER
8
+ INCLUDEPATH += $$PWD
9
+
10
+ include (maxLibQtCore.pri )
11
+
12
+ OTHER_FILES += $$PWD /CMakeLists.txt
Original file line number Diff line number Diff line change
1
+ # # maxLibQtCore
2
+
3
+ HEADERS += \
4
+ $$PWD /AppDebugMessageHandler.h
5
+
6
+ SOURCES += \
7
+ $$PWD /AppDebugMessageHandler.cpp
Original file line number Diff line number Diff line change
1
+ TARGET = maxLibQtItemModels
2
+ TEMPLATE = lib
3
+
4
+ QT += core
5
+
6
+ DESTDIR = $${OUT_PWD }/bin
7
+ DEFINES += QT_USE_QSTRINGBUILDER
8
+ INCLUDEPATH += $$PWD
9
+
10
+ include (maxLibQtItemModels.pri )
11
+
12
+ OTHER_FILES += $$PWD /CMakeLists.txt
Original file line number Diff line number Diff line change
1
+
2
+ HEADERS += \
3
+ $$PWD /GroupedItemsProxyModel.h
4
+
5
+ SOURCES += \
6
+ $$PWD /GroupedItemsProxyModel.cpp
Original file line number Diff line number Diff line change
1
+ TEMPLATE = subdirs
2
+
3
+ SUBDIRS += core
4
+ SUBDIRS += itemmodels
5
+ SUBDIRS += widgets
Original file line number Diff line number Diff line change
1
+
2
+ HEADERS += \
3
+ $$PWD /ExportableTableView.h \
4
+ $$PWD /ScrollableMessageBox.h \
5
+ $$PWD /TimerEdit.h \
6
+ $$PWD /TreeComboBox.h
7
+
8
+ SOURCES += \
9
+ $$PWD /ExportableTableView.cpp \
10
+ $$PWD /ScrollableMessageBox.cpp \
11
+ $$PWD /TimerEdit.cpp \
12
+ $$PWD /TreeComboBox.cpp
Original file line number Diff line number Diff line change
1
+ TARGET = maxLibQtWidgets
2
+ TEMPLATE = lib
3
+
4
+ QT += core widgets
5
+
6
+ DESTDIR = $${OUT_PWD }/bin
7
+ DEFINES += QT_USE_QSTRINGBUILDER
8
+ INCLUDEPATH += $$PWD
9
+
10
+ include (maxLibQtWidgets.pri )
11
+
12
+ OTHER_FILES += $$PWD /CMakeLists.txt
You can’t perform that action at this time.
0 commit comments