Merge pull request #624 from ChrisDill/master

Added Sublime Text 3 project template
This commit is contained in:
Ray 2018-08-15 16:04:21 +02:00 committed by GitHub
commit e4f74e85a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View File

@ -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).

View File

@ -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"
},
]
}

View File

@ -0,0 +1,8 @@
{
"folders":
[
{
"path": "../../"
}
]
}