折叠按钮修改,转码页面优化
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
QT += core gui widgets
|
||||
|
||||
TARGET = Uft30ChangeCode
|
||||
TEMPLATE = app
|
||||
|
||||
DEFINES += QT_DEPRECATED_WARNINGS
|
||||
|
||||
SOURCES += main.cpp \
|
||||
src/mainwindow/mainwindow.cpp \
|
||||
src/pythonrunner/PythonRunner.cpp \
|
||||
src/pages/about/aboutpage.cpp \
|
||||
src/pages/batchconvert/batchconvertpage.cpp \
|
||||
src/pages/functionsearch/functionsearchpage.cpp \
|
||||
src/pages/help/helppage.cpp \
|
||||
src/pages/settings/settingspage.cpp
|
||||
|
||||
HEADERS += src/mainwindow/mainwindow.h \
|
||||
src/pythonrunner/PythonRunner.h \
|
||||
src/pages/about/aboutpage.h \
|
||||
src/pages/batchconvert/batchconvertpage.h \
|
||||
src/pages/functionsearch/functionsearchpage.h \
|
||||
src/pages/help/helppage.h \
|
||||
src/pages/settings/settingspage.h
|
||||
|
||||
RESOURCES += resources.qrc
|
||||
|
||||
CONFIG += c++17
|
||||
CONFIG += debug_and_release
|
||||
|
||||
QMAKE_CXXFLAGS += -Wall -Wextra
|
||||
QMAKE_LFLAGS += -fno-use-linker-plugin
|
||||
|
||||
INCLUDEPATH += src
|
||||
INCLUDEPATH += 3rd/ElaWidgetTools/include
|
||||
|
||||
win32 {
|
||||
LIBS += -L$$PWD/3rd/ElaWidgetTools/lib -lElaWidgetTools
|
||||
LIBS += -ld3d11 -ldxgi
|
||||
RC_FILE = app.rc
|
||||
}
|
||||
|
||||
DESTDIR = $$PWD/bin
|
||||
OBJECTS_DIR = $$PWD/build
|
||||
MOC_DIR = $$PWD/build
|
||||
RCC_DIR = $$PWD/build
|
||||
|
||||
|
||||
Reference in New Issue
Block a user