tools: Add VSCode setup (fixes #3906)

Add tooling to set up a Visual Studio Code development environment
for CEF. See script output for usage.

Run: python3 tools/setup_vscode.py
This commit is contained in:
Marshall Greenblatt
2025-03-19 18:34:33 -04:00
parent 8fa5244adb
commit e88e98f061
7 changed files with 707 additions and 6 deletions

View File

@ -38,7 +38,7 @@ def write_file(path, data, overwrite=True, quiet=True):
return False
if not quiet:
print('Writing file %s' % path)
print('Writing %s file.' % path)
try:
with open(path, 'w', encoding='utf-8', newline='\n') as f: