Files
clients/aesclass/aesclass.pro
admin eb22d21bac 암호화모듈 추가
git-svn-id: svn://192.168.0.12/source@276 8346c931-da38-4b9b-9d4c-e48b93cbd075
2016-06-07 10:07:14 +00:00

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