Project Settings: Difference between revisions
Jump to navigation
Jump to search
Created page with "=Project Configuration Example= <pre> { "project": { "break": "C", "builders": "*.{mms,com}", "exclude": "**/{node_modules,.vscode}/**", "h..." |
mNo edit summary |
||
| Line 19: | Line 19: | ||
=Settings Description= | =Settings Description= | ||
* <code>'''Break'''</code> - Keyboard | * <code>'''Break'''</code> - Keyboard key to pause debugging in VMS IDE debugger. Press <code>CTRL+Key</code> to pause debugging. | ||
* <code>'''Builders'''</code> - Mask for files used for building the project. Default is "*.{mms,com}". | * <code>'''Builders'''</code> - Mask for files used for building the project. Default is "*.{mms,com}". | ||
* <code>'''Exclude'''</code> - Folders excluded from synchronization with OpenVMS system. | * <code>'''Exclude'''</code> - Folders excluded from synchronization with OpenVMS system. | ||
| Line 25: | Line 25: | ||
* <code>'''Listing'''</code> - Listing files that will be downloaded after the project is built for debugging purpose. | * <code>'''Listing'''</code> - Listing files that will be downloaded after the project is built for debugging purpose. | ||
* <code>'''Outdir'''</code> - Output directory where object, listing and executable files will be stored when built. Is also used for temporary files. '''NOTE''': Should be only the name of the folder, not a full or relative path. | * <code>'''Outdir'''</code> - Output directory where object, listing and executable files will be stored when built. Is also used for temporary files. '''NOTE''': Should be only the name of the folder, not a full or relative path. | ||
* <code>'''Project Name'''</code> - Name for the executable file, auto-generated '''MMS''' file for builder, OPT file for | * <code>'''Project Name'''</code> - Name for the executable file, auto-generated '''MMS''' file for builder, OPT file for linker, and COM file for defining logical names. | ||
* <code>'''Project Type'''</code> - Type of the project. Available types: '''executable''', '''library''' or '''shareable'''. The building method depends on the type of the project and its dependencies. | * <code>'''Project Type'''</code> - Type of the project. Available types: '''executable''', '''library''' or '''shareable'''. The building method depends on the type of the project and its dependencies. | ||
* <code>'''Resource'''</code> - Files required for the project, but are not involved in the build process. | * <code>'''Resource'''</code> - Files required for the project, but are not involved in the build process. | ||
Revision as of 06:01, 7 May 2019
Project Configuration Example
{
"project": {
"break": "C",
"builders": "*.{mms,com}",
"exclude": "**/{node_modules,.vscode}/**",
"headers": "*.h",
"listing": "*.lis",
"outdir": "out",
"projectName": "project",
"projectType": "executable",
"resource": "**/resource/**",
"root": "project",
"source": "*.{cpp,c}"
}
}
Settings Description
Break- Keyboard key to pause debugging in VMS IDE debugger. PressCTRL+Keyto pause debugging.Builders- Mask for files used for building the project. Default is "*.{mms,com}".Exclude- Folders excluded from synchronization with OpenVMS system.Headers- Header files. Default is "*.{h,hpp}".Listing- Listing files that will be downloaded after the project is built for debugging purpose.Outdir- Output directory where object, listing and executable files will be stored when built. Is also used for temporary files. NOTE: Should be only the name of the folder, not a full or relative path.Project Name- Name for the executable file, auto-generated MMS file for builder, OPT file for linker, and COM file for defining logical names.Project Type- Type of the project. Available types: executable, library or shareable. The building method depends on the type of the project and its dependencies.Resource- Files required for the project, but are not involved in the build process.Root- Directory of the project on remote OpenVMS machine.Source- Mask for the source files, e.g. "*.{c,cpp}".