2021-01-05 22:48:49 -05:00
|
|
|
#
|
2023-01-22 23:51:35 -06:00
|
|
|
# Copyright (c) 2020-2023 Alex Spataru <https://github.com/alex-spataru>
|
2021-01-05 22:48:49 -05:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
|
|
|
#
|
|
|
|
|
2021-01-09 16:56:30 -08:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Definitions to avoid adding DLL imports/exports
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
DEFINES += QTCSV_STATIC_LIB
|
|
|
|
|
2021-12-18 03:17:11 -05:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Fix MSVC math constants redefinition warning
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
DEFINES += _USE_MATH_DEFINES
|
|
|
|
|
2021-11-05 00:44:03 -06:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Useful hack for the unity build
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
|
2021-01-05 22:48:49 -05:00
|
|
|
#-------------------------------------------------------------------------------
|
2021-01-18 10:52:24 -05:00
|
|
|
# Include *.pri files
|
2021-01-05 22:48:49 -05:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
2021-09-24 20:07:09 -05:00
|
|
|
include($$PWD/qwt/qwt.pri)
|
2021-01-05 22:48:49 -05:00
|
|
|
include($$PWD/qtcsv/qtcsv.pri)
|
2021-02-25 18:26:02 -05:00
|
|
|
include($$PWD/qmqtt/qmqtt.pri)
|
2023-01-22 09:24:36 -06:00
|
|
|
include($$PWD/OpenSSL/OpenSSL.pri)
|
2021-10-09 15:16:34 -05:00
|
|
|
include($$PWD/QRealFourier/QRealFourier.pri)
|
2021-01-05 22:48:49 -05:00
|
|
|
include($$PWD/QSimpleUpdater/QSimpleUpdater.pri)
|
2022-06-10 06:42:31 -05:00
|
|
|
include($$PWD/QSourceHighlite/QSourceHighlite.pri)
|