You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
766 B
Prolog
38 lines
766 B
Prolog
#
|
|
#
|
|
#
|
|
include(../common.pri)
|
|
|
|
QT -= gui
|
|
TEMPLATE = lib
|
|
|
|
# Pick if the library will be static or dynamic:
|
|
CONFIG += static
|
|
# or dynamic (don't forget to define QDECIMAL_SHARED
|
|
#CONFIG += shared
|
|
#DEFINES += QDECIMAL_SHARED=2
|
|
# 1=import, client app, 2=export, source shared library (here)
|
|
|
|
|
|
TARGET = qdecimal
|
|
DEPENDPATH += .
|
|
# To include decnumber headers
|
|
INCLUDEPATH += ../decnumber
|
|
DESTDIR = ../lib
|
|
LIBS += -L../lib -ldecnumber
|
|
|
|
# Input
|
|
HEADERS += QDecContext.hh \
|
|
QDecDouble.hh \
|
|
QDecPacked.hh \
|
|
QDecNumber.hh \
|
|
QDecSingle.hh \
|
|
QDecQuad.hh
|
|
|
|
SOURCES += QDecContext.cc \
|
|
QDecDouble.cc \
|
|
QDecPacked.cc \
|
|
QDecNumber.cc \
|
|
QDecSingle.cc \
|
|
QDecQuad.cc
|