Skip to content

Commit 3f63b75

Browse files
committed
WIP
1 parent 3140813 commit 3f63b75

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+43974
-1899
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ out/
88
scripts/__pycache__/
99
sandbox/__pycache__/
1010
pilotlight/__pycache__/
11+
pilotlight/pilotlight.pyd
12+
pilotlight/pilotlight_d.pyd
13+
pilotlight/*.pdb
14+
pilotlight/*.dll
1115

1216
# debug files
1317
src/*.pdb
18+
sandbox/*.pdb
1419

1520
# build scripts
1621
src/build.bat

.vscode/c_cpp_properties.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"${workspaceFolder}/../pilotlight/dependencies/glfw/include",
1515
"${workspaceFolder}/dependencies/cpython",
1616
"${workspaceFolder}/dependencies/cpython/Include",
17-
"${workspaceFolder}/dependencies/cpython/PC"
17+
"${workspaceFolder}/dependencies/cpython/PC",
18+
"${env:VK_SDK_PATH}/Include"
1819
],
1920
"defines": [
2021
"_DEBUG",

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"files.associations": {
3+
"pl_*.h": "c",
4+
"pl_*.m": "objective-c",
5+
"*.inc": "c"
6+
},
7+
"python.analysis.extraPaths": ["./build"]
8+
}

data/pl_core.json

Lines changed: 0 additions & 43 deletions
This file was deleted.

data/pl_draw_ext.json

Lines changed: 0 additions & 26 deletions
This file was deleted.

data/pl_starter_ext.json

Lines changed: 0 additions & 41 deletions
This file was deleted.

data/pl_ui_ext.json

Lines changed: 0 additions & 28 deletions
This file was deleted.

dependencies/glfw/LICENSE.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Copyright (c) 2002-2006 Marcus Geelnard
2+
3+
Copyright (c) 2006-2019 Camilla Löwy
4+
5+
This software is provided 'as-is', without any express or implied
6+
warranty. In no event will the authors be held liable for any damages
7+
arising from the use of this software.
8+
9+
Permission is granted to anyone to use this software for any purpose,
10+
including commercial applications, and to alter it and redistribute it
11+
freely, subject to the following restrictions:
12+
13+
1. The origin of this software must not be misrepresented; you must not
14+
claim that you wrote the original software. If you use this software
15+
in a product, an acknowledgment in the product documentation would
16+
be appreciated but is not required.
17+
18+
2. Altered source versions must be plainly marked as such, and must not
19+
be misrepresented as being the original software.
20+
21+
3. This notice may not be removed or altered from any source
22+
distribution.
23+

0 commit comments

Comments
 (0)