brightscript
This is an old revision of the document!
BrightScript
Here are some BrightScript tips.
On a Windows system, here's a template Sublime project:
- My_Project.sublime-project
{ "build_systems": [ { "name": "Zip", "working_dir": "$project_path", "windows": { "cmd": "\"C:\\Program Files\\7-Zip\\7z.exe\" a -tzip \"$project_base_name.zip\" manifest source/*.brs images" }, "osx": { "shell_cmd": "zip \"$project_base_name.zip\" manifest source/*.brs images" }, "linux": { "shell_cmd": "zip \"$project_base_name.zip\" manifest source/*.brs images" } } ], "folders": [ { "path": ".", "file_exclude_patterns": [ "tags", "*.zip", "*.sublime-project" ], "folder_exclude_patterns": [ "obj" ], } ] }
brightscript.1442110924.txt.gz · Last modified: 2023/04/12 20:44 (external edit)