24 lines
533 B
Text
24 lines
533 B
Text
#
|
|
# Copyright (C) 2018-2019 QuasarApp.
|
|
# Distributed under the lgplv3 software license, see the accompanying
|
|
# Everyone is permitted to copy and distribute verbatim copies
|
|
# of this license document, but changing it is not allowed.
|
|
#
|
|
|
|
!isEmpty(Qt_GMP_LIB):error("GMP.pri already included")
|
|
Qt_GMP_LIB = 1
|
|
|
|
DEFINES += MINIGMP_LIBRARY
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
HEADERS += \
|
|
$$PWD/bigint.h \
|
|
$$PWD/mini-gmp.h \
|
|
$$PWD/minigmp_global.h
|
|
|
|
SOURCES += \
|
|
$$PWD/bigint.cpp \
|
|
$$PWD/mini-gmp.c
|
|
|
|
|
|
INCLUDEPATH += $$PWD
|