-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e6109dc
Showing
29 changed files
with
10,009 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
build/ | ||
obj/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Win32", | ||
"includePath": [ | ||
"C:/raylib/raylib/src/**", | ||
"${workspaceFolder}/**" | ||
], | ||
"defines": [ | ||
"_DEBUG", | ||
"UNICODE", | ||
"_UNICODE", | ||
"GRAPHICS_API_OPENGL_33", | ||
"PLATFORM_DESKTOP" | ||
], | ||
"compilerPath": "C:/raylib/w64devkit/bin/gcc.exe", | ||
"cStandard": "c99", | ||
"cppStandard": "c++14", | ||
"intelliSenseMode": "gcc-x64" | ||
}, | ||
{ | ||
"name": "Mac", | ||
"includePath": [ | ||
"<path_to_raylib>/src/**", | ||
"${workspaceFolder}/**" | ||
], | ||
"defines": [ | ||
"_DEBUG", | ||
"UNICODE", | ||
"_UNICODE", | ||
"GRAPHICS_API_OPENGL_33", | ||
"PLATFORM_DESKTOP" | ||
], | ||
"macFrameworkPath": [ | ||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks" | ||
], | ||
"compilerPath": "/usr/bin/clang", | ||
"cStandard": "c11", | ||
"cppStandard": "c++14", | ||
"intelliSenseMode": "clang-x64" | ||
}, | ||
{ | ||
"name": "Linux", | ||
"includePath": [ | ||
"<path_to_raylib>/src/**", | ||
"${workspaceFolder}/**" | ||
], | ||
"defines": [ | ||
"_DEBUG", | ||
"UNICODE", | ||
"_UNICODE", | ||
"GRAPHICS_API_OPENGL_33", | ||
"PLATFORM_DESKTOP" | ||
], | ||
"compilerPath": "/usr/bin/clang", | ||
"cStandard": "c11", | ||
"cppStandard": "c++14", | ||
"intelliSenseMode": "clang-x64" | ||
|
||
} | ||
], | ||
"version": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/${fileBasenameNoExtension}", | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceFolder}", | ||
"environment": [], | ||
"externalConsole": false, | ||
"MIMode": "gdb", | ||
"setupCommands": [ | ||
{ | ||
"description": "Enable pretty-printing for gdb", | ||
"text": "-enable-pretty-printing", | ||
"ignoreFailures": false | ||
} | ||
], | ||
"windows": { | ||
"miDebuggerPath": "C:/raylib/w64devkit/bin/gdb.exe", | ||
}, | ||
"osx": { | ||
"MIMode": "lldb" | ||
}, | ||
"linux": { | ||
"miDebuggerPath": "/usr/bin/gdb", | ||
}, | ||
"preLaunchTask": "build debug" | ||
}, | ||
{ | ||
"name": "Run", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceFolder}", | ||
"environment": [], | ||
"externalConsole": false, | ||
"program": "${workspaceFolder}/${fileBasenameNoExtension}", | ||
"MIMode": "gdb", | ||
"windows": { | ||
"program": "${workspaceFolder}/${fileBasenameNoExtension}.exe", | ||
"miDebuggerPath": "C:/raylib/w64devkit/bin/gdb.exe" | ||
}, | ||
"osx": { | ||
"MIMode": "lldb" | ||
}, | ||
"linux": { | ||
"miDebuggerPath": "/usr/bin/gdb" | ||
}, | ||
"preLaunchTask": "build release", | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/*.o": true, | ||
"**/*.exe": true, | ||
}, | ||
"C_Cpp.errorSquiggles": "disabled", | ||
"files.associations": { | ||
"*.asm": "gbz80", | ||
"pause.h": "c", | ||
"string": "c", | ||
"vector": "c", | ||
"stdio.h": "c", | ||
"utils.h": "c", | ||
"game.h": "c", | ||
"__assert": "c", | ||
"__bit_reference": "c", | ||
"__config": "c", | ||
"__debug": "c", | ||
"__hash_table": "c", | ||
"__locale": "c", | ||
"__mutex_base": "c", | ||
"__node_handle": "c", | ||
"__split_buffer": "c", | ||
"__threading_support": "c", | ||
"array": "c", | ||
"atomic": "c", | ||
"bitset": "c", | ||
"charconv": "c", | ||
"cmath": "c", | ||
"complex": "c", | ||
"exception": "c", | ||
"__memory": "c", | ||
"functional": "c", | ||
"iterator": "c", | ||
"memory_resource": "c", | ||
"type_traits": "c", | ||
"ios": "c", | ||
"istream": "c", | ||
"limits": "c", | ||
"locale": "c", | ||
"mutex": "c", | ||
"new": "c", | ||
"optional": "c", | ||
"ostream": "c", | ||
"ratio": "c", | ||
"stdexcept": "c", | ||
"string_view": "c", | ||
"system_error": "c", | ||
"tuple": "c", | ||
"typeinfo": "c", | ||
"unordered_map": "c", | ||
"variant": "c", | ||
"common.h": "c" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build debug", | ||
"type": "process", | ||
"command": "make", | ||
"args": [ | ||
"PLATFORM=PLATFORM_DESKTOP", | ||
"BUILD_MODE=DEBUG", | ||
"PROJECT_NAME=${fileBasenameNoExtension}", | ||
"OBJS=${fileBasenameNoExtension}.c" | ||
], | ||
"windows": { | ||
"command": "mingw32-make.exe", | ||
"args": [ | ||
"RAYLIB_PATH=C:/raylib/raylib", | ||
"PROJECT_NAME=${fileBasenameNoExtension}", | ||
"OBJS=${fileBasenameNoExtension}.c", | ||
"BUILD_MODE=DEBUG" | ||
], | ||
}, | ||
"osx": { | ||
"args": [ | ||
"RAYLIB_PATH=<path_to_raylib>/raylib", | ||
"PROJECT_NAME=${fileBasenameNoExtension}", | ||
"OBJS=${fileBasenameNoExtension}.c", | ||
"BUILD_MODE=DEBUG" | ||
], | ||
}, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"problemMatcher": [ | ||
"$gcc" | ||
] | ||
}, | ||
{ | ||
"label": "build release", | ||
"type": "process", | ||
"command": "make", | ||
"args": [ | ||
"PLATFORM=PLATFORM_DESKTOP", | ||
"PROJECT_NAME=${fileBasenameNoExtension}", | ||
"OBJS=${fileBasenameNoExtension}.c" | ||
], | ||
"windows": { | ||
"command": "mingw32-make.exe", | ||
"args": [ | ||
"RAYLIB_PATH=C:/raylib/raylib", | ||
"PROJECT_NAME=${fileBasenameNoExtension}", | ||
"OBJS=${fileBasenameNoExtension}.c" | ||
], | ||
}, | ||
"osx": { | ||
"args": [ | ||
"RAYLIB_PATH=<path_to_raylib>/raylib", | ||
"PROJECT_NAME=${fileBasenameNoExtension}", | ||
"OBJS=${fileBasenameNoExtension}.c" | ||
], | ||
}, | ||
"group": "build", | ||
"problemMatcher": [ | ||
"$gcc" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.