You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
555 B
31 lines
555 B
QT += core gui widgets
|
|
|
|
TEMPLATE = lib
|
|
TARGET = NumKeyBoard
|
|
DEFINES += NUMKEYBOARD_LIBRARY
|
|
|
|
CONFIG += c++17
|
|
|
|
INCLUDEPATH += $$PWD/
|
|
|
|
DESTDIR = $$PWD/../../Build/Libs
|
|
MOC_DIR = $$PWD/Build/moc
|
|
OBJECTS_DIR = $$PWD/Build/objs
|
|
RCC_DIR = $$PWD/Build/resources
|
|
UI_DIR = $$PWD/Build/ui
|
|
|
|
HEADERS += \
|
|
$$PWD/NumKeyBoard_global.h \
|
|
$$PWD/numkeydia.h
|
|
|
|
SOURCES += $$PWD/numkeydia.cpp
|
|
|
|
FORMS += $$PWD/numkeydia.ui
|
|
|
|
RESOURCES += $$PWD/NumKeyBoard.qrc
|
|
|
|
# Default rules for deployment.
|
|
unix {
|
|
target.path = /usr/lib
|
|
}
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|