VoiletCStudio v1.0 - 紫罗兰 C 工程配置器

功能特性:
- JSON 格式工程配置文件
- 虚拟目录管理(类似 MDK)
- 跨平台 CMake 自动生成
- 一键编译 Debug/Release
- 拖拽文件打开工程
- 实时编译输出显示

作者:虾哥
日期:2026-04-09
This commit is contained in:
虾哥
2026-04-09 10:18:39 -04:00
commit 19296b7337
24 changed files with 3362 additions and 0 deletions

26
VoiletCStudio.pro Normal file
View File

@@ -0,0 +1,26 @@
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
# 默认部署规则
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target