123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "make: haxe",
- "type": "shell",
- "command": "make ADD_REVISION=1 -s -j haxe",
- "osx": {
- "command": "eval $(opam env) && make ADD_REVISION=1 -s -j haxe",
- },
- "windows": {
- "command": "opam exec -- make ADD_REVISION=1 -f Makefile.win -s -j haxe"
- },
- "problemMatcher": [],
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "make: libs",
- "type": "shell",
- "command": "make -s -j libs",
- "windows": {
- "command": "opam exec -- make -f Makefile.win -s -j libs"
- },
- "problemMatcher": []
- },
- {
- "label": "make: haxelib",
- "type": "shell",
- "command": "make -s haxelib",
- "windows": {
- "command": "opam exec -- make -f Makefile.win -s haxelib"
- },
- "problemMatcher": ["$haxe", "$haxe-absolute"]
- },
- {
- "label": "make: all",
- "type": "shell",
- "command": "make s -j libs && make ADD_REVISION=1 -s -j haxe && make -s haxelib",
- "windows": {
- "command": "opam exec -- make -f Makefile.win -s -j libs && make ADD_REVISION=1 -f Makefile.win -s -j haxe && make -f Makefile.win -s haxelib"
- },
- "problemMatcher": ["$haxe", "$haxe-absolute"]
- },
- {
- "label": "make: clean",
- "type": "shell",
- "command": "make clean",
- "problemMatcher": []
- }
- ]
- }
|