CGII/.vscode/tasks.json

25 lines
820 B
JSON
Raw Normal View History

2018-05-17 13:50:03 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run CG-Viewer",
"type": "shell",
"command": "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:CGII/build/cmake/build/bin/unix/ framework/bin/unix/./cgv_viewer plugin:cg_fltk.cgv plugin:CGII.cgv",
"problemMatcher": []
},
{
"label": "Build All",
"type": "shell",
2018-05-17 14:01:02 +00:00
"command": "cd framework && sh buildLinux.sh",
"problemMatcher": []
2018-05-17 13:50:03 +00:00
},
{
"label": "Build CGII",
"type": "shell",
2018-05-17 14:01:02 +00:00
"command": "cd CGII/build/cmake && cmake . && make clean && make -j16",
2018-05-17 13:50:03 +00:00
"problemMatcher": []
}
]
}