CGII/.vscode/tasks.json

31 lines
995 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",
2018-05-18 09:25:22 +00:00
"command": "framework/bin/unix/cgv_viewer",
"problemMatcher": [],
"args": [
"plugin:cg_fltk.cgv",
"plugin:CGII.cgv",
"plugin:crg_stereo_view.cgv"
2018-05-29 20:28:59 +00:00
],
"dependsOn": "Build CGII"
2018-05-17 13:50:03 +00:00
},
{
"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-18 09:25:22 +00:00
"command": "cd CGII/build/cmake && cmake . && make clean && make -j16 && cd ../../.. && cp CGII/build/cmake/build/bin/unix/libCGII.so framework/lib/unix/",
2018-05-17 13:50:03 +00:00
"problemMatcher": []
}
]
}