klog/KLog.pro

38 lines
2.0 KiB
Prolog
Raw Normal View History

2021-05-27 13:37:37 +00:00
#***************************************************************************
2021-04-17 12:54:14 +00:00
# KLog.pro
# -------------------
# begin : jan 2021
# copyright : (C) 2021 by Jaime Robles
# email : jaime@robles.es
# ***************************************************************************
#/*****************************************************************************
# * This file is part of KLog. *
# * *
# * KLog is free software: you can redistribute it and/or modify *
# * it under the terms of the GNU General Public License as published by *
# * the Free Software Foundation, either version 3 of the License, or *
# * (at your option) any later version. *
# * *
# * KLog is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU General Public License for more details. *
# * *
# * You should have received a copy of the GNU General Public License *
# * along with KLog. If not, see <https://www.gnu.org/licenses/>. *
# * *
# *****************************************************************************/
2021-02-03 17:41:58 +00:00
TEMPLATE = subdirs
2022-08-20 18:02:17 +00:00
SUBDIRS += src \
tests
2022-04-04 09:05:08 +00:00
#CONFIG(debug, debug) {
# SUBDIRS += tests
#}
2021-10-13 14:01:40 +00:00
message (Compiling)
2022-04-04 08:48:13 +00:00
CONFIG += no_testcase_installs
2022-04-04 09:05:08 +00:00
unix:!mac {
QMAKE_CXXFLAGS += -fprofile-arcs -ftest-coverage -O0 -g
QMAKE_LDFLAGS += -fprofile-arcs -ftest-coverage -O0 -g
LIBS += -lgcov
}