From 98c4d362ba51552c1db8fb66f9eb1ff916e75341 Mon Sep 17 00:00:00 2001 From: Herwig Birke Date: Sat, 27 May 2023 21:49:48 +0200 Subject: [PATCH] initial commit --- inventryParts.pro | 29 ++++--------------- .../cmainwindow.cpp | 0 cmainwindow.h => inventryParts/cmainwindow.h | 0 .../cmainwindow.ui | 0 inventryParts/inventryParts.pro | 24 +++++++++++++++ main.cpp => inventryParts/main.cpp | 0 6 files changed, 29 insertions(+), 24 deletions(-) rename cmainwindow.cpp => inventryParts/cmainwindow.cpp (100%) rename cmainwindow.h => inventryParts/cmainwindow.h (100%) rename cmainwindow.ui => inventryParts/cmainwindow.ui (100%) create mode 100644 inventryParts/inventryParts.pro rename main.cpp => inventryParts/main.cpp (100%) diff --git a/inventryParts.pro b/inventryParts.pro index bf9faa8..7e6545d 100644 --- a/inventryParts.pro +++ b/inventryParts.pro @@ -1,24 +1,5 @@ -QT += core gui - -greaterThan(QT_MAJOR_VERSION, 4): QT += widgets - -CONFIG += c++17 - -# You can make your code fail to compile if it uses deprecated APIs. -# In order to do so, uncomment the following line. -#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 - -SOURCES += \ - main.cpp \ - cmainwindow.cpp - -HEADERS += \ - cmainwindow.h - -FORMS += \ - cmainwindow.ui - -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target +#! [0] +TEMPLATE = subdirs +SUBDIRS = inventryParts \ + importDigiKey +#! [0] diff --git a/cmainwindow.cpp b/inventryParts/cmainwindow.cpp similarity index 100% rename from cmainwindow.cpp rename to inventryParts/cmainwindow.cpp diff --git a/cmainwindow.h b/inventryParts/cmainwindow.h similarity index 100% rename from cmainwindow.h rename to inventryParts/cmainwindow.h diff --git a/cmainwindow.ui b/inventryParts/cmainwindow.ui similarity index 100% rename from cmainwindow.ui rename to inventryParts/cmainwindow.ui diff --git a/inventryParts/inventryParts.pro b/inventryParts/inventryParts.pro new file mode 100644 index 0000000..bf9faa8 --- /dev/null +++ b/inventryParts/inventryParts.pro @@ -0,0 +1,24 @@ +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++17 + +# You can make your code fail to compile if it uses deprecated APIs. +# In order to do so, uncomment the following line. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +SOURCES += \ + main.cpp \ + cmainwindow.cpp + +HEADERS += \ + cmainwindow.h + +FORMS += \ + cmainwindow.ui + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target diff --git a/main.cpp b/inventryParts/main.cpp similarity index 100% rename from main.cpp rename to inventryParts/main.cpp