下载地址:Scintilla
下载版本:Release 3.7.6
遇到问题:在网上看说2.12之后没有qt4qt5了,但是下载2.11版本也没有qt4qt5
下载新版本需要C++17,376版本有一句
- This is the first release of the long term branch which avoids using features from C++14 or later in order to support older systems.
下载下来解压

将.template删掉

打开工程,直接编就是库,生成目录

改pro为app

添加main.cpp
#include "ScintillaEdit.h"
#include <qapplication.h>
int main(int argc,char *argv[])
{
QApplication a(argc,argv);
ScintillaEdit edit;
edit.show();
a.exec();
return 0;
}
运行

1148

被折叠的 条评论
为什么被折叠?



