36 lines
1.1 KiB
Prolog
36 lines
1.1 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2016-02-12T15:41:49
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core
|
|
|
|
QT -= gui
|
|
|
|
TARGET = aesclass
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp \
|
|
aesclass.cpp
|
|
|
|
HEADERS += \
|
|
aesclass.h
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../cryptopp563/ -lcryptlib
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../cryptopp563/ -lcryptlibd
|
|
else:unix: LIBS += -L$$PWD/../cryptopp563/ -lcryptlib
|
|
|
|
INCLUDEPATH += $$PWD/../cryptopp563
|
|
DEPENDPATH += $$PWD/../cryptopp563
|
|
|
|
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../cryptopp563/libcryptlib.a
|
|
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../cryptopp563/libcryptlibd.a
|
|
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../cryptopp563/cryptlib.lib
|
|
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../cryptopp563/cryptlibd.lib
|
|
else:unix: PRE_TARGETDEPS += $$PWD/../cryptopp563/libcryptlib.a
|