Skip to content

Commit 381fc06

Browse files
committed
Add qmake project files.
1 parent 6cf9c8b commit 381fc06

9 files changed

+81
-0
lines changed

maxLibQt.pri

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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

maxLibQt.pro

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
TARGET = maxLibQt
2+
TEMPLATE = subdirs
3+
4+
SUBDIRS += src
5+
6+
include(maxLibQt.pri)

src/core/core.pro

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

src/core/maxLibQtCore.pri

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## maxLibQtCore
2+
3+
HEADERS += \
4+
$$PWD/AppDebugMessageHandler.h
5+
6+
SOURCES += \
7+
$$PWD/AppDebugMessageHandler.cpp

src/itemmodels/itemmodels.pro

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

src/itemmodels/maxLibQtItemModels.pri

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
HEADERS += \
3+
$$PWD/GroupedItemsProxyModel.h
4+
5+
SOURCES += \
6+
$$PWD/GroupedItemsProxyModel.cpp

src/src.pro

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
TEMPLATE = subdirs
2+
3+
SUBDIRS += core
4+
SUBDIRS += itemmodels
5+
SUBDIRS += widgets

src/widgets/maxLibQtWidgets.pri

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

src/widgets/widgets.pro

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

0 commit comments

Comments
 (0)