| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2017-01-28T22:39:30
- #
- #-------------------------------------------------
- QT += network testlib xml
- QT -= gui
- TARGET = UnitTests
- CONFIG += console
- CONFIG -= app_bundle
- TEMPLATE = app
- CONFIG += c++11
- # 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 += \
- main.cpp \
- tests/tst_configuration.cpp \
- cwf/configuration.cpp \
- cwf/cppwebapplication.cpp \
- cwf/cppwebserver.cpp \
- cwf/cppwebcontroller.cpp \
- cwf/cstlcompiler.cpp \
- cwf/cstlcompilerattributes.cpp \
- cwf/cstlcompilerfor.cpp \
- cwf/cstlcompilerif.cpp \
- cwf/cstlcompilerimport.cpp \
- cwf/filemanager.cpp \
- cwf/filter.cpp \
- cwf/filterchain.cpp \
- cwf/httpparser.cpp \
- cwf/httpreadrequest.cpp \
- cwf/controller.cpp \
- cwf/request.cpp \
- cwf/response.cpp \
- cwf/session.cpp \
- cwf/metaclassparser.cpp \
- cwf/properties.cpp \
- cwf/qlistobject.cpp \
- cwf/requestdispatcher.cpp \
- cwf/urlencoder.cpp \
- tests/tst_cppwebapplication.cpp \
- tests/tst_cppwebserver.cpp \
- tests/tst_cppwebcontroller.cpp \
- tests/tst_cstlcompiler.cpp \
- tests/tst_cstlcompilerattributes.cpp \
- tests/tst_cstlcompilerfor.cpp \
- tests/tst_cstlcompilerif.cpp \
- tests/tst_cstlcompilerimport.cpp \
- tests/tst_cstlcompilerobject.cpp \
- tests/tst_filemanager.cpp \
- tests/tst_filter.cpp \
- tests/tst_filterchain.cpp \
- tests/tst_httpparser.cpp \
- tests/tst_httpreadrequest.cpp \
- tests/tst_response.cpp \
- tests/tst_session.cpp \
- tests/tst_metaclassparser.cpp \
- tests/tst_properties.cpp \
- tests/tst_qlistobject.cpp \
- tests/tst_qmapthreadsafety.cpp \
- tests/tst_requestdispatcher.cpp \
- tests/tst_urlencoder.cpp \
- tests/tst_request.cpp \
- tests/tst_cstlcompilerout.cpp \
- cwf/sslloader.cpp
- DEFINES += SRCDIR=\\\"$$PWD/\\\"
- HEADERS += \
- tests/tst_configuration.h \
- cwf/configuration.h \
- cwf/cppwebapplication.h \
- cwf/cppwebserver.h \
- cwf/cppwebcontroller.h \
- cwf/cstlcompiler.h \
- cwf/cstlcompilerattributes.h \
- cwf/cstlcompilerfor.h \
- cwf/cstlcompilerif.h \
- cwf/cstlcompilerimport.h \
- cwf/cstlcompilerobject.h \
- cwf/filemanager.h \
- cwf/filter.h \
- cwf/filterchain.h \
- cwf/httpparser.h \
- cwf/httpreadrequest.h \
- cwf/controller.h \
- cwf/request.h \
- cwf/response.h \
- cwf/session.h \
- cwf/metaclassparser.h \
- cwf/properties.h \
- cwf/qlistobject.h \
- cwf/qmapthreadsafety.h \
- cwf/requestdispatcher.h \
- cwf/urlencoder.h \
- tests/tst_cppwebapplication.h \
- tests/tst_cppwebserver.h \
- tests/tst_cstlcompiler.h \
- tests/tst_cstlcompilerattributes.h \
- tests/tst_cstlcompilerfor.h \
- tests/tst_cstlcompilerif.h \
- tests/tst_cstlcompilerimport.h \
- tests/tst_cstlcompilerobject.h \
- tests/tst_filemanager.h \
- tests/tst_filter.h \
- tests/tst_filterchain.h \
- tests/tst_httpparser.h \
- tests/tst_httpreadrequest.h \
- tests/tst_response.h \
- tests/tst_session.h \
- tests/tst_metaclassparser.h \
- tests/tst_properties.h \
- tests/tst_qlistobject.h \
- tests/tst_qmapthreadsafety.h \
- tests/tst_requestdispatcher.h \
- tests/tst_urlencoder.h \
- tests/tst_request.h \
- cwf/constants.h \
- cwf/cppwebframework_global.h \
- tests/tst_cppwebcontroller.h \
- cwf/variant.h \
- tests/tst_cstlcompilerout.h \
- cwf/sslloader.h
- QMAKE_CXXFLAGS += -g -Wall -fprofile-arcs -ftest-coverage -O0
- QMAKE_LFLAGS += -g -Wall -fprofile-arcs -ftest-coverage -O0
- LIBS += -lgcov
|