Skip to content

Commit

Permalink
First import
Browse files Browse the repository at this point in the history
Version 0.9 ALPHA
  • Loading branch information
patrickpr committed Mar 1, 2018
1 parent 2907d7a commit d50a52f
Show file tree
Hide file tree
Showing 97 changed files with 46,093 additions and 0 deletions.
55 changes: 55 additions & 0 deletions CPImport.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
#-------------------------------------------------
#
# Project created by QtCreator 2017-10-29T09:51:40
#
#-------------------------------------------------

QT += core gui network

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = CPImport
TEMPLATE = app

# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0


SOURCES += \
src/app/main.cpp \
src/app/mainimportwin.cpp \
src/app/dialoglogin.cpp \
src/app/cmgmtconnect.cpp \
src/app/cobjectdlg.cpp \
src/app/cversioncheck.cpp

HEADERS += \
src/app/mainimportwin.h \
src/app/dialoglogin.h \
src/app/cmgmtconnect.h \
src/app/cobjectdlg.h \
src/app/cversioncheck.h

FORMS += \
src/app/mainimportwin.ui \
src/app/dialoglogin.ui \
src/app/cobjectdlg.ui

INCLUDEPATH += "src/openssl/include"

LIBS += -L"$$PWD/src/openssl/lib/MinGW"
LIBS += "-llibeay32"
LIBS += "-lssleay32"

DISTFILES +=

RESOURCES += \
resource.qrc
Binary file added res/lock.ico
Binary file not shown.
5 changes: 5 additions & 0 deletions resource.qrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<RCC>
<qresource prefix="/icon">
<file>res/lock.ico</file>
</qresource>
</RCC>
Loading

0 comments on commit d50a52f

Please sign in to comment.