diff options
| author | Uneven Prankster <unevenprankster@protonmail.com> | 2023-10-15 21:28:29 -0300 |
|---|---|---|
| committer | Uneven Prankster <unevenprankster@protonmail.com> | 2023-10-15 21:28:29 -0300 |
| commit | 1c0cc775732201f4c4d3ee0d6772be786b3b4aa1 (patch) | |
| tree | f5d692d046868261275c7430a624c3ea9ed75d3d /raylib/projects/SublimeText | |
| parent | a89f892640cf12f75c7ce18e6e88c70a8d3965ed (diff) | |
A lot has certainly happened!
Diffstat (limited to 'raylib/projects/SublimeText')
| -rw-r--r-- | raylib/projects/SublimeText/README.md | 13 | ||||
| -rw-r--r-- | raylib/projects/SublimeText/raylib.sublime-build | 13 | ||||
| -rw-r--r-- | raylib/projects/SublimeText/raylib.sublime-project | 8 |
3 files changed, 34 insertions, 0 deletions
diff --git a/raylib/projects/SublimeText/README.md b/raylib/projects/SublimeText/README.md new file mode 100644 index 0000000..5100d64 --- /dev/null +++ b/raylib/projects/SublimeText/README.md @@ -0,0 +1,13 @@ +# Sublime Text 3 project template + +This is a project template to be used with [Sublime Text 3](https://www.sublimetext.com/). + +Simply click on the `raylib.sublime-project` file to open it with Sublime Text. +Alternatively you can open Sublime Text first and click on the `Project -> Open Project`. + +It comes with raylib.sublime-build. This file needs to be copied into the sublime packages folder for the user. On windows it can be found in `%AppData%\Sublime Text 3\Packages\User`. + +Once done open the project and select `Tools -> Build System -> raylib`. +To run press Ctrl + Shift + B and select which build you want to run. + +For a full overview of build systems please check the [build systems guide](https://www.sublimetext.com/docs/3/build_systems.html). diff --git a/raylib/projects/SublimeText/raylib.sublime-build b/raylib/projects/SublimeText/raylib.sublime-build new file mode 100644 index 0000000..faa02dd --- /dev/null +++ b/raylib/projects/SublimeText/raylib.sublime-build @@ -0,0 +1,13 @@ +{ + "variants": [ + { + "name": "desktop", + "shell_cmd": "cd ${folder}\\src && mingw32-make PLATFORM=PLATFORM_DESKTOP" + }, + + { + "name": "examples", + "shell_cmd": "cd ${folder}\\examples && mingw32-make PLATFORM=PLATFORM_DESKTOP" + }, + ] +} diff --git a/raylib/projects/SublimeText/raylib.sublime-project b/raylib/projects/SublimeText/raylib.sublime-project new file mode 100644 index 0000000..5eaa1a7 --- /dev/null +++ b/raylib/projects/SublimeText/raylib.sublime-project @@ -0,0 +1,8 @@ +{ + "folders": + [ + { + "path": "../../" + } + ] +} |
