Skip to content

Commit d50a52f

Browse files
committed
First import
Version 0.9 ALPHA
1 parent 2907d7a commit d50a52f

Some content is hidden

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

97 files changed

+46093
-0
lines changed

CPImport.pro

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
#-------------------------------------------------
2+
#
3+
# Project created by QtCreator 2017-10-29T09:51:40
4+
#
5+
#-------------------------------------------------
6+
7+
QT += core gui network
8+
9+
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
10+
11+
TARGET = CPImport
12+
TEMPLATE = app
13+
14+
# The following define makes your compiler emit warnings if you use
15+
# any feature of Qt which as been marked as deprecated (the exact warnings
16+
# depend on your compiler). Please consult the documentation of the
17+
# deprecated API in order to know how to port your code away from it.
18+
DEFINES += QT_DEPRECATED_WARNINGS
19+
20+
# You can also make your code fail to compile if you use deprecated APIs.
21+
# In order to do so, uncomment the following line.
22+
# You can also select to disable deprecated APIs only up to a certain version of Qt.
23+
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
24+
25+
26+
SOURCES += \
27+
src/app/main.cpp \
28+
src/app/mainimportwin.cpp \
29+
src/app/dialoglogin.cpp \
30+
src/app/cmgmtconnect.cpp \
31+
src/app/cobjectdlg.cpp \
32+
src/app/cversioncheck.cpp
33+
34+
HEADERS += \
35+
src/app/mainimportwin.h \
36+
src/app/dialoglogin.h \
37+
src/app/cmgmtconnect.h \
38+
src/app/cobjectdlg.h \
39+
src/app/cversioncheck.h
40+
41+
FORMS += \
42+
src/app/mainimportwin.ui \
43+
src/app/dialoglogin.ui \
44+
src/app/cobjectdlg.ui
45+
46+
INCLUDEPATH += "src/openssl/include"
47+
48+
LIBS += -L"$$PWD/src/openssl/lib/MinGW"
49+
LIBS += "-llibeay32"
50+
LIBS += "-lssleay32"
51+
52+
DISTFILES +=
53+
54+
RESOURCES += \
55+
resource.qrc

res/lock.ico

66.1 KB
Binary file not shown.

resource.qrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<RCC>
2+
<qresource prefix="/icon">
3+
<file>res/lock.ico</file>
4+
</qresource>
5+
</RCC>

0 commit comments

Comments
 (0)