Skip to content

Commit 4ec21fc

Browse files
first release source
0 parents  commit 4ec21fc

File tree

509 files changed

+5397
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

509 files changed

+5397
-0
lines changed

PasswordGenerator.pro

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
QT += core gui
2+
3+
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
4+
5+
CONFIG += c++17
6+
7+
# You can make your code fail to compile if it uses deprecated APIs.
8+
# In order to do so, uncomment the following line.
9+
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
10+
11+
SOURCES += \
12+
main.cpp \
13+
mainwindow.cpp
14+
15+
HEADERS += \
16+
mainwindow.h
17+
18+
FORMS += \
19+
mainwindow.ui
20+
21+
# Default rules for deployment.
22+
qnx: target.path = /tmp/$${TARGET}/bin
23+
else: unix:!android: target.path = /opt/$${TARGET}/bin
24+
!isEmpty(target.path): INSTALLS += target
25+
26+
RESOURCES +=

PasswordGenerator.pro.user

Lines changed: 270 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
QMAKE_CXX.QT_COMPILER_STDCXX = 201703L
2+
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 11
3+
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 2
4+
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
5+
QMAKE_CXX.COMPILER_MACROS = \
6+
QT_COMPILER_STDCXX \
7+
QMAKE_GCC_MAJOR_VERSION \
8+
QMAKE_GCC_MINOR_VERSION \
9+
QMAKE_GCC_PATCH_VERSION
10+
QMAKE_CXX.INCDIRS = \
11+
C:/Qt-framework/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++ \
12+
C:/Qt-framework/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32 \
13+
C:/Qt-framework/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward \
14+
C:/Qt-framework/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include \
15+
C:/Qt-framework/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed \
16+
C:/Qt-framework/Tools/mingw1120_64/x86_64-w64-mingw32/include
17+
QMAKE_CXX.LIBDIRS = \
18+
C:/Qt-framework/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0 \
19+
C:/Qt-framework/Tools/mingw1120_64/lib/gcc \
20+
C:/Qt-framework/Tools/mingw1120_64/x86_64-w64-mingw32/lib \
21+
C:/Qt-framework/Tools/mingw1120_64/lib
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)