2019-06-20 22:40:13 +03:00
|
|
|
{
|
2019-08-28 12:43:12 +03:00
|
|
|
"name": "makefile-tools",
|
|
|
|
"displayName": "Makefile Tools",
|
|
|
|
"description": "Provide makefile support in VS Code: C/C++ IntelliSense, build, debug/run.",
|
2023-04-18 21:23:05 +03:00
|
|
|
"version": "0.7.0",
|
2019-08-24 04:59:19 +03:00
|
|
|
"publisher": "ms-vscode",
|
2019-08-28 12:43:12 +03:00
|
|
|
"preview": true,
|
2020-08-31 08:33:05 +03:00
|
|
|
"icon": "res/makefile-logo.png",
|
2019-08-28 12:43:12 +03:00
|
|
|
"readme": "README.md",
|
|
|
|
"author": {
|
|
|
|
"name": "Microsoft Corporation"
|
|
|
|
},
|
|
|
|
"license": "SEE LICENSE IN LICENSE.txt",
|
2019-08-24 04:59:19 +03:00
|
|
|
"engines": {
|
2023-03-17 22:25:13 +03:00
|
|
|
"vscode": "^1.74.0"
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
2019-08-28 12:43:12 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Microsoft/vscode-makefile-tools/issues",
|
|
|
|
"email": "c_cpp_support@microsoft.com"
|
2020-02-27 02:37:49 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
2019-08-28 12:43:12 +03:00
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Microsoft/vscode-makefile-tools.git"
|
2020-02-27 02:37:49 +03:00
|
|
|
},
|
|
|
|
"homepage": "https://github.com/Microsoft/vscode-makefile-tools",
|
|
|
|
"qna": "https://github.com/Microsoft/vscode-makefile-tools/issues",
|
|
|
|
"keywords": [
|
2019-08-28 12:43:12 +03:00
|
|
|
"C",
|
|
|
|
"C++",
|
|
|
|
"IntelliSense",
|
|
|
|
"Microsoft",
|
|
|
|
"Makefile"
|
2020-02-27 02:37:49 +03:00
|
|
|
],
|
|
|
|
"categories": [
|
2019-08-28 12:43:12 +03:00
|
|
|
"Programming Languages",
|
|
|
|
"Debuggers",
|
2020-08-31 08:33:05 +03:00
|
|
|
"Other"
|
2020-02-27 02:37:49 +03:00
|
|
|
],
|
|
|
|
"activationEvents": [
|
2020-07-02 18:51:11 +03:00
|
|
|
"onCommand:makefile.setBuildConfiguration",
|
2023-04-15 00:06:38 +03:00
|
|
|
"onCommand:makefile.getConfiguration",
|
2020-07-02 18:51:11 +03:00
|
|
|
"onCommand:makefile.setBuildTarget",
|
2023-04-15 00:06:38 +03:00
|
|
|
"onCommand:makefile.getBuildTarget",
|
2020-07-02 18:51:11 +03:00
|
|
|
"onCommand:makefile.buildTarget",
|
2020-07-23 17:18:01 +03:00
|
|
|
"onCommand:makefile.buildCleanTarget",
|
|
|
|
"onCommand:makefile.buildAll",
|
|
|
|
"onCommand:makefile.buildCleanAll",
|
2020-07-02 18:51:11 +03:00
|
|
|
"onCommand:makefile.setLaunchConfiguration",
|
|
|
|
"onCommand:makefile.launchDebug",
|
|
|
|
"onCommand:makefile.launchRun",
|
2021-02-13 00:31:43 +03:00
|
|
|
"onCommand:makefile.launchTargetPath",
|
|
|
|
"onCommand:makefile.getLaunchTargetPath",
|
|
|
|
"onCommand:makefile.launchTargetFileName",
|
|
|
|
"onCommand:makefile.getLaunchTargetFileName",
|
|
|
|
"onCommand:makefile.getLaunchTargetDirectory",
|
|
|
|
"onCommand:makefile.getLaunchTargetArgs",
|
|
|
|
"onCommand:makefile.getLaunchTargetArgsConcat",
|
2022-01-11 20:03:28 +03:00
|
|
|
"onCommand:makefile.makeBaseDirectory",
|
2020-07-17 15:29:34 +03:00
|
|
|
"onCommand:makefile.configure",
|
2020-08-17 19:29:14 +03:00
|
|
|
"onCommand:makefile.cleanConfigure",
|
2020-07-17 19:33:30 +03:00
|
|
|
"onCommand:makefile.preConfigure",
|
2023-07-25 16:34:48 +03:00
|
|
|
"onCommand:makefile.postConfigure",
|
2020-09-03 19:47:23 +03:00
|
|
|
"onCommand:makefile.outline.setBuildConfiguration",
|
|
|
|
"onCommand:makefile.outline.setBuildTarget",
|
|
|
|
"onCommand:makefile.outline.buildTarget",
|
|
|
|
"onCommand:makefile.outline.buildCleanTarget",
|
|
|
|
"onCommand:makefile.outline.setLaunchConfiguration",
|
|
|
|
"onCommand:makefile.outline.launchDebug",
|
|
|
|
"onCommand:makefile.outline.launchRun",
|
|
|
|
"onCommand:makefile.outline.configure",
|
|
|
|
"onCommand:makefile.outline.cleanConfigure",
|
|
|
|
"onCommand:makefile.outline.preConfigure",
|
2023-07-25 16:34:48 +03:00
|
|
|
"onCommand:makefile.outline.postConfigure",
|
2020-08-17 19:29:14 +03:00
|
|
|
"onCommand:makefile.resetState",
|
2021-12-10 03:24:12 +03:00
|
|
|
"workspaceContains:**/makefile",
|
|
|
|
"workspaceContains:**/Makefile",
|
|
|
|
"workspaceContains:**/GNUmakefile"
|
2019-08-24 04:59:19 +03:00
|
|
|
],
|
|
|
|
"main": "./out/src/extension.js",
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
2020-07-02 18:51:11 +03:00
|
|
|
"command": "makefile.buildTarget",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.buildTarget.title%"
|
2020-07-23 17:18:01 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.buildCleanTarget",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.buildCleanTarget.title%"
|
2020-07-23 17:18:01 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.buildAll",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.buildAll.title%"
|
2020-07-23 17:18:01 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.buildCleanAll",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.buildCleanAll.title%"
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
|
|
|
{
|
2020-07-02 18:51:11 +03:00
|
|
|
"command": "makefile.launchDebug",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.launchDebug.title%"
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
|
|
|
{
|
2020-07-02 18:51:11 +03:00
|
|
|
"command": "makefile.launchRun",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.launchRun.title%"
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
|
|
|
{
|
2020-07-02 18:51:11 +03:00
|
|
|
"command": "makefile.setBuildConfiguration",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.setBuildConfiguration.title%"
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
|
|
|
{
|
2020-07-02 18:51:11 +03:00
|
|
|
"command": "makefile.setBuildTarget",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.setBuildTarget.title%"
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
|
|
|
{
|
2020-07-02 18:51:11 +03:00
|
|
|
"command": "makefile.setLaunchConfiguration",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.setLaunchConfiguration.title%"
|
2020-07-17 15:29:34 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.configure",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.configure.title%"
|
2020-07-17 19:33:30 +03:00
|
|
|
},
|
2020-08-17 19:29:14 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.cleanConfigure",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.cleanConfigure.title%"
|
2020-08-17 19:29:14 +03:00
|
|
|
},
|
2020-07-17 19:33:30 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.preConfigure",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.preConfigure.title%"
|
2020-08-17 19:29:14 +03:00
|
|
|
},
|
2023-07-25 16:34:48 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.postConfigure",
|
|
|
|
"title": "%makefile-tools.command.makefile.postConfigure.title%"
|
|
|
|
},
|
2020-09-03 19:47:23 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.buildTarget",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.buildTarget.title%",
|
2020-09-03 19:47:23 +03:00
|
|
|
"icon": {
|
|
|
|
"light": "res/light/build.svg",
|
|
|
|
"dark": "res/dark/build.svg"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.buildCleanTarget",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.buildCleanTarget.title%"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.launchDebug",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.launchDebug.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(debug)",
|
2022-04-25 23:35:23 +03:00
|
|
|
"enablement": "makefile:localDebugFeature"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.launchRun",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.launchRun.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(run)",
|
2022-04-25 23:35:23 +03:00
|
|
|
"enablement": "makefile:localRunFeature"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setBuildConfiguration",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.setBuildConfiguration.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(notebook-edit)"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setBuildTarget",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.setBuildTarget.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(notebook-edit)"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setLaunchConfiguration",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.setLaunchConfiguration.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(notebook-edit)"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.openMakefilePathSetting",
|
2023-07-24 20:54:08 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.openMakefilePathSetting.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(notebook-edit)"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.openMakefileFile",
|
2023-07-24 20:54:08 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.openMakefileFile.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(open-preview)"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.openMakePathSetting",
|
2023-07-24 20:54:08 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.openMakePathSetting.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(notebook-edit)"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.openBuildLogSetting",
|
2023-07-24 20:54:08 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.openBuildLogSetting.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(notebook-edit)"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
2023-03-17 23:11:46 +03:00
|
|
|
{
|
2023-04-25 22:46:11 +03:00
|
|
|
"command": "makefile.outline.openBuildLogFile",
|
2023-07-24 20:54:08 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.openBuildLogFile.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(open-preview)"
|
2023-03-17 23:11:46 +03:00
|
|
|
},
|
2020-09-03 19:47:23 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.configure",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.configure.title%",
|
2023-04-25 22:46:11 +03:00
|
|
|
"icon": "$(settings)"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.cleanConfigure",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.cleanConfigure.title%"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.preConfigure",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.preConfigure.title%"
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
2023-07-25 16:34:48 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.postConfigure",
|
|
|
|
"title": "%makefile-tools.command.makefile.postConfigure.title%"
|
|
|
|
},
|
2020-08-17 19:29:14 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.resetState",
|
2022-01-26 23:57:02 +03:00
|
|
|
"title": "%makefile-tools.command.makefile.resetState.title%"
|
2019-08-24 04:59:19 +03:00
|
|
|
}
|
|
|
|
],
|
2021-11-15 14:19:23 +03:00
|
|
|
"problemMatchers": [
|
|
|
|
{
|
|
|
|
"name": "gcc",
|
|
|
|
"source": "gcc",
|
|
|
|
"owner": "makefile-tools",
|
|
|
|
"fileLocation": [
|
|
|
|
"autoDetect",
|
2022-01-11 20:03:28 +03:00
|
|
|
"${command:makefile.makeBaseDirectory}"
|
|
|
|
],
|
2021-11-15 14:19:23 +03:00
|
|
|
"pattern": {
|
|
|
|
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
|
|
|
|
"file": 1,
|
|
|
|
"line": 2,
|
|
|
|
"column": 3,
|
|
|
|
"severity": 4,
|
|
|
|
"message": 5
|
|
|
|
}
|
2022-01-11 20:03:28 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "msvc",
|
|
|
|
"source": "msvc",
|
|
|
|
"owner": "makefile-tools",
|
|
|
|
"base": "$msCompile",
|
|
|
|
"fileLocation": [
|
|
|
|
"autoDetect",
|
|
|
|
"${command:makefile.makeBaseDirectory}"
|
|
|
|
]
|
|
|
|
}
|
2021-11-15 14:19:23 +03:00
|
|
|
],
|
2019-08-24 04:59:19 +03:00
|
|
|
"configuration": {
|
|
|
|
"type": "object",
|
2022-01-11 20:04:07 +03:00
|
|
|
"title": "Makefile Tools",
|
2019-08-24 04:59:19 +03:00
|
|
|
"properties": {
|
2020-07-02 19:15:32 +03:00
|
|
|
"makefile.configurations": {
|
2020-08-17 19:29:14 +03:00
|
|
|
"type": "array",
|
2020-07-02 18:51:11 +03:00
|
|
|
"default": [],
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurations.description%",
|
2020-07-02 18:51:11 +03:00
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"default": null,
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurations.name.description%"
|
2020-07-02 18:51:11 +03:00
|
|
|
},
|
|
|
|
"makefilePath": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurations.makefilePath.description%"
|
2020-07-02 18:51:11 +03:00
|
|
|
},
|
2020-07-02 19:15:32 +03:00
|
|
|
"makePath": {
|
2020-07-02 18:51:11 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurations.makePath.description%"
|
2020-07-02 18:51:11 +03:00
|
|
|
},
|
2021-05-05 23:10:41 +03:00
|
|
|
"makeDirectory": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurations.makeDirectory.description%"
|
2021-05-05 23:10:41 +03:00
|
|
|
},
|
2020-07-02 18:51:11 +03:00
|
|
|
"makeArgs": {
|
|
|
|
"type": "array",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurations.makeArgs.description%",
|
2020-07-02 18:51:11 +03:00
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"default": []
|
|
|
|
},
|
2021-11-15 14:19:23 +03:00
|
|
|
"problemMatchers": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
2022-01-11 20:03:28 +03:00
|
|
|
"default": ["$gcc", "$msvc"],
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurations.problemMatchers.description%"
|
2021-11-15 14:19:23 +03:00
|
|
|
},
|
2020-07-02 18:51:11 +03:00
|
|
|
"buildLog": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurations.buildLog.description%"
|
2023-10-04 14:20:50 +03:00
|
|
|
},
|
|
|
|
"preConfigureArgs": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"default": [],
|
|
|
|
"description": "%makefile-tools.configuration.makefile.preConfigureArgs.description%"
|
|
|
|
},
|
|
|
|
"postConfigureArgs": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"default": [],
|
|
|
|
"description": "%makefile-tools.configuration.makefile.postConfigureArgs.description%"
|
2020-07-02 18:51:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
2020-07-23 16:10:13 +03:00
|
|
|
"makefile.defaultLaunchConfiguration": {
|
2020-08-17 19:29:14 +03:00
|
|
|
"type": "object",
|
2019-08-24 04:59:19 +03:00
|
|
|
"default": null,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.defaultLaunchConfiguration.description%",
|
2019-08-24 04:59:19 +03:00
|
|
|
"properties": {
|
2020-07-16 12:52:34 +03:00
|
|
|
"MIMode": {
|
2019-08-24 04:59:19 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.defaultLaunchConfiguration.MIMode.description%",
|
2020-07-16 12:52:34 +03:00
|
|
|
"enum": [
|
|
|
|
"gdb",
|
|
|
|
"lldb"
|
|
|
|
]
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
2020-07-16 12:52:34 +03:00
|
|
|
"miDebuggerPath": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.defaultLaunchConfiguration.miDebuggerPath.description%"
|
2020-07-16 12:52:34 +03:00
|
|
|
},
|
|
|
|
"stopAtEntry": {
|
|
|
|
"type": "boolean",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.defaultLaunchConfiguration.stopAtEntry.description%",
|
2020-07-16 12:52:34 +03:00
|
|
|
"default": false
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
2020-07-16 12:52:34 +03:00
|
|
|
"symbolSearchPath": {
|
2019-08-24 04:59:19 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.defaultLaunchConfiguration.symbolSearchPath.description%"
|
2020-07-16 12:52:34 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"makefile.launchConfigurations": {
|
2020-08-17 19:29:14 +03:00
|
|
|
"type": "array",
|
2020-07-16 12:52:34 +03:00
|
|
|
"default": [],
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.launchConfigurations.description%",
|
2020-07-16 12:52:34 +03:00
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"default": null,
|
|
|
|
"properties": {
|
|
|
|
"binaryPath": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.launchConfigurations.binaryPath.description%"
|
2020-07-16 12:52:34 +03:00
|
|
|
},
|
|
|
|
"binaryArgs": {
|
|
|
|
"type": "array",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.launchConfigurations.binaryArgs.description%",
|
2020-07-16 12:52:34 +03:00
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"default": []
|
|
|
|
},
|
|
|
|
"cwd": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.launchConfigurations.cwd.description%"
|
2020-07-16 12:52:34 +03:00
|
|
|
},
|
|
|
|
"MIMode": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.launchConfigurations.MIMode.description%",
|
2020-07-16 12:52:34 +03:00
|
|
|
"enum": [
|
|
|
|
"gdb",
|
|
|
|
"lldb"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"miDebuggerPath": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.launchConfigurations.miDebuggerPath.description%"
|
2020-07-16 12:52:34 +03:00
|
|
|
},
|
|
|
|
"stopAtEntry": {
|
|
|
|
"type": "boolean",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.launchConfigurations.stopAtEntry.description%",
|
2020-07-16 12:52:34 +03:00
|
|
|
"default": false
|
|
|
|
},
|
|
|
|
"symbolSearchPath": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.launchConfigurations.symbolSearchPath.description%"
|
2020-07-16 12:52:34 +03:00
|
|
|
}
|
2019-08-24 04:59:19 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
2020-07-02 18:51:11 +03:00
|
|
|
"makefile.loggingLevel": {
|
2020-08-17 19:29:14 +03:00
|
|
|
"type": "string",
|
2019-08-24 04:59:19 +03:00
|
|
|
"enum": [
|
|
|
|
"Normal",
|
2020-07-02 18:51:11 +03:00
|
|
|
"Verbose",
|
|
|
|
"Debug"
|
2019-08-24 04:59:19 +03:00
|
|
|
],
|
|
|
|
"default": "Normal",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.loggingLevel.description%",
|
2019-08-24 04:59:19 +03:00
|
|
|
"scope": "resource"
|
2020-03-19 23:30:30 +03:00
|
|
|
},
|
2020-07-02 18:51:11 +03:00
|
|
|
"makefile.makePath": {
|
2020-07-14 19:01:15 +03:00
|
|
|
"type": "string",
|
2020-09-29 03:12:24 +03:00
|
|
|
"default": "make",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.makePath.description%",
|
2020-07-14 19:01:15 +03:00
|
|
|
"scope": "resource"
|
2020-07-02 18:51:11 +03:00
|
|
|
},
|
2021-05-05 23:10:41 +03:00
|
|
|
"makefile.makeDirectory": {
|
2021-11-15 14:19:23 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.makeDirectory.description%",
|
2021-11-15 14:19:23 +03:00
|
|
|
"scope": "resource"
|
2021-05-05 23:10:41 +03:00
|
|
|
},
|
2020-07-02 18:51:11 +03:00
|
|
|
"makefile.makefilePath": {
|
2020-07-14 19:01:15 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.makefilePath.description%",
|
2020-07-14 19:01:15 +03:00
|
|
|
"scope": "resource"
|
2020-03-19 23:30:30 +03:00
|
|
|
},
|
2020-07-02 18:51:11 +03:00
|
|
|
"makefile.buildLog": {
|
2020-07-14 19:01:15 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.buildLog.description%",
|
2020-07-17 11:58:13 +03:00
|
|
|
"default": null,
|
2020-07-14 19:01:15 +03:00
|
|
|
"scope": "resource"
|
2020-03-19 23:30:30 +03:00
|
|
|
},
|
2020-09-29 03:12:24 +03:00
|
|
|
"makefile.extensionOutputFolder": {
|
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.extensionOutputFolder.description%",
|
2022-08-25 21:11:06 +03:00
|
|
|
"default": "",
|
2020-09-29 03:12:24 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
2020-07-02 18:51:11 +03:00
|
|
|
"makefile.extensionLog": {
|
2020-07-14 19:01:15 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.extensionLog.description%",
|
2022-08-25 21:11:06 +03:00
|
|
|
"default": "",
|
2020-07-16 20:01:09 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
2020-09-29 03:12:24 +03:00
|
|
|
"makefile.configurationCachePath": {
|
2020-07-16 20:01:09 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configurationCachePath.description%",
|
2022-08-25 21:11:06 +03:00
|
|
|
"default": "",
|
2020-07-14 19:01:15 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
2020-07-23 16:10:13 +03:00
|
|
|
"makefile.dryrunSwitches": {
|
2020-07-14 19:01:15 +03:00
|
|
|
"type": "array",
|
2021-11-08 17:21:18 +03:00
|
|
|
"default": [
|
|
|
|
"--always-make",
|
|
|
|
"--keep-going",
|
|
|
|
"--print-directory"
|
|
|
|
],
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.dryrunSwitches.description%",
|
2020-07-14 19:01:15 +03:00
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"scope": "resource"
|
2020-07-17 15:29:34 +03:00
|
|
|
},
|
2020-11-16 22:00:43 +03:00
|
|
|
"makefile.additionalCompilerNames": {
|
|
|
|
"type": "array",
|
|
|
|
"default": [],
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.additionalCompilerNames.description%",
|
2020-11-16 22:00:43 +03:00
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"makefile.excludeCompilerNames": {
|
|
|
|
"type": "array",
|
|
|
|
"default": [],
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.excludeCompilerNames.description%",
|
2020-11-16 22:00:43 +03:00
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
2020-07-17 15:29:34 +03:00
|
|
|
"makefile.configureOnOpen": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configureOnOpen.description%",
|
2020-07-17 15:29:34 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"makefile.configureOnEdit": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configureOnEdit.description%",
|
2020-07-17 15:29:34 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"makefile.configureAfterCommand": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.configureAfterCommand.description%",
|
2020-07-17 15:29:34 +03:00
|
|
|
"scope": "resource"
|
2020-07-17 19:33:30 +03:00
|
|
|
},
|
2020-08-17 19:29:14 +03:00
|
|
|
"makefile.preConfigureScript": {
|
2020-07-17 19:33:30 +03:00
|
|
|
"type": "string",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.preConfigureScript.description%",
|
2020-07-17 19:33:30 +03:00
|
|
|
"default": null,
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
2023-10-04 14:20:50 +03:00
|
|
|
"makefile.preConfigureArgs": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "%makefile-tools.configuration.makefile.preConfigureArgs.description%",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"default": []
|
|
|
|
},
|
2023-07-25 16:34:48 +03:00
|
|
|
"makefile.postConfigureScript": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "%makefile-tools.configuration.makefile.postConfigureScript.description%",
|
|
|
|
"default": null,
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
2023-10-04 14:20:50 +03:00
|
|
|
"makefile.postConfigureArgs": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "%makefile-tools.configuration.makefile.postConfigureArgs.description%",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"default": []
|
|
|
|
},
|
2020-08-17 19:29:14 +03:00
|
|
|
"makefile.alwaysPreConfigure": {
|
2020-07-17 19:33:30 +03:00
|
|
|
"type": "boolean",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.alwaysPreConfigure.description%",
|
2020-07-17 19:33:30 +03:00
|
|
|
"default": false,
|
|
|
|
"scope": "resource"
|
2020-11-16 15:29:38 +03:00
|
|
|
},
|
2023-07-25 16:34:48 +03:00
|
|
|
"makefile.alwaysPostConfigure": {
|
|
|
|
"type": "boolean",
|
|
|
|
"description": "%makefile-tools.configuration.makefile.alwaysPostConfigure.description%",
|
|
|
|
"default": false,
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
2021-01-15 14:21:04 +03:00
|
|
|
"makefile.ignoreDirectoryCommands": {
|
|
|
|
"type": "boolean",
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.ignoreDirectoryCommands.description%",
|
2021-01-15 14:21:04 +03:00
|
|
|
"default": true,
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
2020-11-16 15:29:38 +03:00
|
|
|
"makefile.phonyOnlyTargets": {
|
2021-02-04 20:29:27 +03:00
|
|
|
"type": "boolean",
|
|
|
|
"default": false,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.phonyOnlyTargets.description%",
|
2021-02-04 20:29:27 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"makefile.saveBeforeBuildOrConfigure": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.saveBeforeBuildOrConfigure.description%",
|
2021-02-04 20:29:27 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"makefile.buildBeforeLaunch": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.buildBeforeLaunch.description%",
|
2021-02-04 20:29:27 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"makefile.clearOutputBeforeBuild": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.clearOutputBeforeBuild.description%",
|
2021-02-04 20:29:27 +03:00
|
|
|
"scope": "resource"
|
2021-06-09 11:06:25 +03:00
|
|
|
},
|
|
|
|
"makefile.compileCommandsPath": {
|
|
|
|
"type": "string",
|
|
|
|
"default": null,
|
2022-01-26 23:57:02 +03:00
|
|
|
"description": "%makefile-tools.configuration.makefile.compileCommandsPath.description%",
|
2021-06-09 11:06:25 +03:00
|
|
|
"scope": "resource"
|
2022-04-25 23:35:23 +03:00
|
|
|
},
|
|
|
|
"makefile.panel.visibility": {
|
|
|
|
"type": "object",
|
|
|
|
"default": null,
|
|
|
|
"properties": {
|
|
|
|
"debug": {
|
|
|
|
"type": "boolean",
|
|
|
|
"description": "%makefile-tools.configuration.makefile.panel.visibility.debug.description%",
|
|
|
|
"default": true
|
|
|
|
},
|
|
|
|
"run": {
|
|
|
|
"type": "boolean",
|
|
|
|
"description": "%makefile-tools.configuration.makefile.panel.visibility.run.description%",
|
|
|
|
"default": true
|
|
|
|
}
|
|
|
|
}
|
2021-02-04 20:29:27 +03:00
|
|
|
}
|
|
|
|
}
|
2020-09-03 19:47:23 +03:00
|
|
|
},
|
|
|
|
"viewsContainers": {
|
|
|
|
"activitybar": [
|
|
|
|
{
|
|
|
|
"id": "makefile__viewContainer",
|
|
|
|
"title": "Makefile",
|
2021-11-08 17:21:18 +03:00
|
|
|
"when": "makefile:fullFeatureSet",
|
2020-09-03 19:47:23 +03:00
|
|
|
"icon": "res/viewcontainer.svg"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"views": {
|
|
|
|
"makefile__viewContainer": [
|
|
|
|
{
|
|
|
|
"id": "makefile.outline",
|
2022-02-25 01:05:35 +03:00
|
|
|
"name": "%makefile-tools.configuration.views.makefile.outline.description%"
|
2020-09-03 19:47:23 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"menus": {
|
2021-11-08 17:21:18 +03:00
|
|
|
"commandPalette": [
|
|
|
|
{
|
|
|
|
"command": "makefile.preConfigure",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
2023-07-25 16:34:48 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.postConfigure",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
2021-11-08 17:21:18 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.buildTarget",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.buildCleanTarget",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.buildAll",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.buildCleanAll",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.launchDebug",
|
2022-04-25 23:35:23 +03:00
|
|
|
"when": "makefile:localDebugFeature"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.launchRun",
|
2022-04-25 23:35:23 +03:00
|
|
|
"when": "makefile:localRunFeature"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.setBuildConfiguration",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.setBuildTarget",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.setLaunchConfiguration",
|
2022-04-25 23:35:23 +03:00
|
|
|
"when": "makefile:localDebugFeature"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
2023-07-24 20:54:08 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.configure",
|
|
|
|
"when": "never"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.cleanConfigure",
|
|
|
|
"when": "never"
|
|
|
|
},
|
2021-11-08 17:21:18 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.preConfigure",
|
2023-07-24 20:54:08 +03:00
|
|
|
"when": "never"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
2023-07-25 16:34:48 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.postConfigure",
|
|
|
|
"when": "makefile:fullFeatureSet"
|
|
|
|
},
|
2021-11-08 17:21:18 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.buildTarget",
|
2023-07-24 20:54:08 +03:00
|
|
|
"when": "never"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.buildCleanTarget",
|
2023-07-24 20:54:08 +03:00
|
|
|
"when": "never"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.launchDebug",
|
2023-07-24 20:54:08 +03:00
|
|
|
"when": "never"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.launchRun",
|
2023-07-24 20:54:08 +03:00
|
|
|
"when": "never"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setBuildConfiguration",
|
2023-07-24 20:54:08 +03:00
|
|
|
"when": "never"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setBuildTarget",
|
2023-07-24 20:54:08 +03:00
|
|
|
"when": "never"
|
2021-11-08 17:21:18 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setLaunchConfiguration",
|
2023-07-24 20:54:08 +03:00
|
|
|
"when": "never"
|
2021-11-08 17:21:18 +03:00
|
|
|
}
|
|
|
|
],
|
2020-09-03 19:47:23 +03:00
|
|
|
"view/title": [
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.preConfigure",
|
|
|
|
"when": "view == makefile.outline",
|
|
|
|
"group": "1_makefileOutline@1"
|
|
|
|
},
|
|
|
|
{
|
2023-07-25 16:34:48 +03:00
|
|
|
"command": "makefile.outline.postConfigure",
|
2020-09-03 19:47:23 +03:00
|
|
|
"when": "view == makefile.outline",
|
|
|
|
"group": "1_makefileOutline@2"
|
|
|
|
},
|
|
|
|
{
|
2023-07-25 16:34:48 +03:00
|
|
|
"command": "makefile.outline.configure",
|
2020-09-03 19:47:23 +03:00
|
|
|
"when": "view == makefile.outline",
|
|
|
|
"group": "1_makefileOutline@3"
|
|
|
|
},
|
2023-07-25 16:34:48 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.cleanConfigure",
|
|
|
|
"when": "view == makefile.outline",
|
|
|
|
"group": "1_makefileOutline@4"
|
|
|
|
},
|
2020-09-03 19:47:23 +03:00
|
|
|
{
|
|
|
|
"command": "makefile.outline.buildTarget",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "navigation@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.buildCleanTarget",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "1_makefileOutline@4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.launchDebug",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && makefile:localDebugFeature",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "navigation@2"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.launchRun",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && makefile:localRunFeature",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "navigation@3"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"view/item/context": [
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.configure",
|
|
|
|
"when": "view == makefile.outline && viewItem =~ /nodeType=configuration/",
|
|
|
|
"group": "1_stateActions@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.cleanConfigure",
|
|
|
|
"when": "view == makefile.outline && viewItem =~ /nodeType=configuration/",
|
|
|
|
"group": "1_stateActions@2"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setBuildConfiguration",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && viewItem =~ /nodeType=configuration/",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "inline@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.buildTarget",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && viewItem =~ /nodeType=buildTarget/",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "1_stateActions@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.buildCleanTarget",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && viewItem =~ /nodeType=buildTarget/",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "1_stateActions@2"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setBuildTarget",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && viewItem =~ /nodeType=buildTarget/",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "inline@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.launchDebug",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && viewItem =~ /nodeType=launchTarget/",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "1_stateActions@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.launchRun",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && viewItem =~ /nodeType=launchTarget/",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "1_stateActions@2"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.setLaunchConfiguration",
|
2023-03-17 23:11:46 +03:00
|
|
|
"when": "makefile:fullFeatureSet && view == makefile.outline && viewItem =~ /nodeType=launchTarget/",
|
2020-09-03 19:47:23 +03:00
|
|
|
"group": "inline@1"
|
2023-03-17 23:11:46 +03:00
|
|
|
},
|
|
|
|
{
|
2023-04-25 22:46:11 +03:00
|
|
|
"command": "makefile.outline.openMakefilePathSetting",
|
|
|
|
"when": "view == makefile.outline && viewItem =~ /nodeType=makefilePathInfo/",
|
|
|
|
"group": "inline@2"
|
2023-03-17 23:11:46 +03:00
|
|
|
},
|
|
|
|
{
|
2023-04-25 22:46:11 +03:00
|
|
|
"command": "makefile.outline.openMakefileFile",
|
|
|
|
"when": "view == makefile.outline && viewItem =~ /nodeType=makefilePathInfo/ && makefile.makefileFilePresent",
|
|
|
|
"group": "inline@1"
|
2023-03-17 23:11:46 +03:00
|
|
|
},
|
|
|
|
{
|
2023-04-25 22:46:11 +03:00
|
|
|
"command": "makefile.outline.openMakePathSetting",
|
|
|
|
"when": "view == makefile.outline && viewItem =~ /nodeType=makePathInfo/",
|
|
|
|
"group": "inline@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.openBuildLogSetting",
|
|
|
|
"when": "view == makefile.outline && viewItem =~ /nodeType=buildLogPathInfo/",
|
|
|
|
"group": "inline@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "makefile.outline.openBuildLogFile",
|
|
|
|
"when": "view == makefile.outline && viewItem =~ /nodeType=buildLogPathInfo/ && makefile.buildLogFilePresent",
|
|
|
|
"group": "inline@1"
|
2020-09-03 19:47:23 +03:00
|
|
|
}
|
|
|
|
]
|
2019-08-24 04:59:19 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-02-25 01:05:35 +03:00
|
|
|
"vscode:prepublish": "yarn compile-production",
|
2021-07-01 02:14:13 +03:00
|
|
|
"compile": "yarn install && tsc -p ./",
|
2022-02-28 20:54:19 +03:00
|
|
|
"compile-production": "yarn install && yarn run translations-generate",
|
2022-01-26 23:57:02 +03:00
|
|
|
"translations-export": "gulp translations-export",
|
|
|
|
"translations-generate": "gulp translations-generate",
|
|
|
|
"translations-import": "gulp translations-import",
|
2019-08-24 04:59:19 +03:00
|
|
|
"watch": "tsc -watch -p ./",
|
2021-11-15 22:27:55 +03:00
|
|
|
"package": "vsce package --yarn -o makefile-tools.vsix",
|
2020-12-04 00:19:38 +03:00
|
|
|
"pretest": "yarn compile",
|
2021-07-01 02:14:13 +03:00
|
|
|
"test": "yarn run pretest && node ./out/src/test/runTest.js"
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-21 19:51:20 +03:00
|
|
|
"@types/mocha": "^9.0.0",
|
2020-03-19 23:30:30 +03:00
|
|
|
"@types/node": "^10.17.17",
|
2023-03-27 21:14:52 +03:00
|
|
|
"@types/vscode": "^1.74.0",
|
2020-02-27 02:37:49 +03:00
|
|
|
"tslint": "^5.20.1",
|
2019-08-28 01:21:05 +03:00
|
|
|
"tslint-microsoft-contrib": "^6.2.0",
|
|
|
|
"tslint-no-unused-expression-chai": "^0.1.4",
|
2021-07-01 02:14:13 +03:00
|
|
|
"@types/chai": "^4.2.15",
|
|
|
|
"@types/chai-as-promised": "^7.1.3",
|
|
|
|
"@types/chai-string": "^1.4.2",
|
|
|
|
"chai": "^4.3.0",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
|
|
|
"chai-string": "^1.5.0",
|
2023-03-21 19:51:20 +03:00
|
|
|
"typescript": "^5.0.2",
|
2021-11-15 21:31:17 +03:00
|
|
|
"vsce": "^1.95.0",
|
2019-08-28 01:21:05 +03:00
|
|
|
"vrsource-tslint-rules": "^6.0.0",
|
2022-01-26 23:57:02 +03:00
|
|
|
"vscode-nls-dev": "^3.3.2",
|
|
|
|
"gulp": "^4.0.2",
|
|
|
|
"gulp-eslint": "^6.0.0",
|
|
|
|
"gulp-filter": "^6.0.0",
|
|
|
|
"gulp-mocha": "^8.0.0",
|
|
|
|
"gulp-sourcemaps": "^3.0.0",
|
|
|
|
"gulp-typescript": "^5.0.1",
|
|
|
|
"fs-extra": "^9.1.0",
|
|
|
|
"@octokit/rest": "^18.1.1",
|
|
|
|
"parse-git-config": "^3.0.0",
|
|
|
|
"jsonc-parser": "^3.0.0",
|
2020-02-27 02:37:49 +03:00
|
|
|
"vscode-test": "^0.4.1"
|
2019-08-24 04:59:19 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-03-19 23:30:30 +03:00
|
|
|
"@types/glob": "^7.1.1",
|
|
|
|
"glob": "^7.1.6",
|
2020-02-27 02:37:49 +03:00
|
|
|
"module-alias": "^2.2.2",
|
2023-03-17 22:25:13 +03:00
|
|
|
"vscode-cpptools": "^6.1.0",
|
2022-01-26 23:57:02 +03:00
|
|
|
"vscode-nls": "^5.0.0",
|
2022-06-28 23:17:51 +03:00
|
|
|
"@vscode/extension-telemetry": "^0.6.2",
|
2020-02-27 02:37:49 +03:00
|
|
|
"vscode-jsonrpc": "^3.6.2"
|
2021-03-09 02:37:30 +03:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2022-06-28 23:17:51 +03:00
|
|
|
"ansi-regex": "^5.0.1",
|
|
|
|
"glob-parent": "^5.1.2",
|
|
|
|
"markdown-it": "^12.3.2",
|
|
|
|
"minimist": "^1.2.6",
|
2023-03-21 19:51:20 +03:00
|
|
|
"nanoid": "^3.1.20",
|
2023-04-11 17:40:55 +03:00
|
|
|
"minimatch": "^3.0.5",
|
|
|
|
"xml2js": "^0.5.0"
|
2019-08-24 04:59:19 +03:00
|
|
|
}
|
2023-03-21 19:51:20 +03:00
|
|
|
|
2019-08-28 01:21:05 +03:00
|
|
|
}
|