FluentUI/src/FluentUI.pro

47 lines
804 B
Prolog
Raw Normal View History

2023-02-24 18:44:29 +08:00
QT += qml quick svg
CONFIG += plugin c++11
TEMPLATE = lib
TARGET = FluentUI
TARGET = $$qtLibraryTarget($$TARGET)
uri = FluentUI
2023-02-27 18:46:39 +08:00
CONFIG += sharedlib # staticlib or sharedlib
2023-02-24 18:44:29 +08:00
RESOURCES += \
res.qrc
HEADERS += \
2023-02-26 23:47:07 +08:00
Def.h \
FluApp.h \
Fluent.h \
2023-02-24 18:44:29 +08:00
FluentUI.h \
2023-02-26 23:47:07 +08:00
FramelessView.h \
2023-02-27 18:46:39 +08:00
WindowHelper.h \
2023-02-26 23:47:07 +08:00
qml_plugin.h \
stdafx.h
2023-02-24 18:44:29 +08:00
SOURCES += \
2023-02-26 23:47:07 +08:00
Def.cpp \
FluApp.cpp \
Fluent.cpp \
2023-02-24 18:44:29 +08:00
FluentUI.cpp \
2023-02-27 18:46:39 +08:00
WindowHelper.cpp \
2023-02-26 23:47:07 +08:00
qml_plugin.cpp \
win32 {
SOURCES += \
FramelessView_win.cpp
} else {
SOURCES += \
FramelessView_unix.cpp
}
2023-02-24 18:44:29 +08:00
DEFINES += VERSION_IN=\\\"1.0.0\\\"
DEFINES += URI_STR=\\\"$$uri\\\"
contains(QMAKE_HOST.os,Windows) {
include(./build_windows.pri)
}else{
include(./build_macos.pri)
}