30 lines
614 B
Prolog
30 lines
614 B
Prolog
|
TEMPLATE = app
|
||
|
CONFIG += console c++11
|
||
|
CONFIG -= app_bundle
|
||
|
CONFIG -= qt
|
||
|
LIBS += -lcrypto -lssl -pthread -lcppunit -lmysqlcppconn
|
||
|
SOURCES += \
|
||
|
main.cpp \
|
||
|
conexion.cpp \
|
||
|
conexion_ssl.cpp \
|
||
|
thread_selector.cpp \
|
||
|
config_reader.cpp \
|
||
|
tests.cpp \
|
||
|
data_acces.cpp \
|
||
|
msql_acces.cpp \
|
||
|
session_manager.cpp \
|
||
|
session_manager_ssl.cpp \
|
||
|
config_package.cpp
|
||
|
|
||
|
HEADERS += \
|
||
|
conexion.h \
|
||
|
conexion_ssl.h \
|
||
|
thread_selector.h \
|
||
|
config_reader.h \
|
||
|
tests.h \
|
||
|
data_acces.h \
|
||
|
msql_acces.h \
|
||
|
session_manager.h \
|
||
|
session_manager_ssl.h \
|
||
|
config_package.h
|