VSCode+XMake开发环境搭建备忘
一、开发环境搭建
1、安装VSCode、XMake。
2、在VSCode插件商店中安装C/C++和XMake插件。
3、创建工程,在指定文件夹目录下运行xmake create命令。
4、尝试编译并配置环境,在xmake.lua目录运行xmake -v -y命令。
5、运行与调试。
xmake f -m debug
xmake
xmake run -d
6、采用VSCode环境编译调试,创建Task.json文件:Terminal->Configure Tasks...->C/C++:cl.exe build active file。会自动生下如下json内容,按F5配置好Launch.json文件后开始编译调试。
{ "version": "2.0.0", "tasks": [ { "type": "cppbuild", "label": "C/C++: cl.exe build active file", "command": "cl.exe", "args": [ "/Zi", "/EHsc", "/nologo", "/Fe${fileDirname}\\${fileBasenameNoExtension}.exe", "${file}" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$msCompile" ], "group": "build", "detail": "compiler: cl.exe" } ] }
至此基础的开发环境搭建完毕。
二、其它使用方法备忘
1、新增第三方依赖包,可以指定固定版本号,也可以用^号指定不低于指定的版本号。但这个从github上下载包特别慢,也容易失败。
2、手动查询三方库。xrepo search xxx
3、手动安装指定的三方库。xrepo install xxx
4、安装到指定目录。xmake install --installdir=./deploy
5、将程序打包成软件包。xmake package
6、设置xmake。xmake f --menu