first commit

This commit is contained in:
liyp
2026-08-25 22:12:29 -04:00
commit e6e5bd32b5
20 changed files with 3064 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
QT += core gui widgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
TARGET = VoiletCStudio
TEMPLATE = app
# 源文件
SOURCES += \
src/main.cpp \
src/mainwindow.cpp \
src/projectconfig.cpp \
src/cmakegenerator.cpp
# 头文件
HEADERS += \
src/mainwindow.h \
src/projectconfig.h \
src/cmakegenerator.h
# 资源文件
RESOURCES += \
resources.qrc
# 默认部署规则
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target