-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SGL env setup * Remove language version from pre-commit * Remove auto-install of prerequisits from setup Fix clang path Add note to docs about python build requirements * Fix launch.json
- Loading branch information
1 parent
6fa4f1a
commit b139313
Showing
6 changed files
with
31 additions
and
73 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -20,7 +20,6 @@ repos: | |
rev: 24.4.2 | ||
hooks: | ||
- id: black | ||
language_version: python3.9 | ||
exclude: | | ||
(?x)^( | ||
.*\.ipynb| | ||
|
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 |
---|---|---|
@@ -1,89 +1,36 @@ | ||
{ | ||
// 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 | ||
// | ||
// Note: These launch configurations rely on the ms-vscode.cmake-tools extension | ||
// to provide ${command:cmake.launchTargetPath} and ${command:cmake.launchTargetDirectory}. | ||
// | ||
"version": "0.2.0", | ||
"configurations": [ | ||
|
||
{ | ||
// Launch configuration for currently selected target. | ||
"name": "Selected CMake Target", | ||
"type": "cppvsdbg", | ||
"name": "Python C++ Debugger Windows", | ||
"type": "pythoncpp", | ||
"request": "launch", | ||
"program": "${command:cmake.launchTargetPath}", | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${command:cmake.launchTargetDirectory}", | ||
"environment": [ | ||
{ | ||
"name": "FALCOR_DEVMODE", | ||
"value": "1" | ||
} | ||
], | ||
"visualizerFile": "${workspaceFolder}/Source/Falcor/Falcor.natvis" | ||
"pythonConfig": "default", | ||
"cppConfig": "default (win) Attach" | ||
}, | ||
{ | ||
// Launch configuration for Mogwai. | ||
"name": "Mogwai", | ||
"type": "cppvsdbg", | ||
"name": "Python C++ Debugger GDB", | ||
"type": "pythoncpp", | ||
"request": "launch", | ||
"windows": { | ||
"program": "${command:cmake.launchTargetDirectory}/Mogwai.exe" | ||
}, | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${command:cmake.launchTargetDirectory}", | ||
"environment": [ | ||
{ | ||
"name": "FALCOR_DEVMODE", | ||
"value": "1" | ||
} | ||
], | ||
"visualizerFile": "${workspaceFolder}/Source/Falcor/Falcor.natvis" | ||
"pythonConfig": "default", | ||
"cppConfig": "default (gdb) Attach" | ||
}, | ||
{ | ||
// Launch configuration for FalcorTest. | ||
"name": "FalcorTest", | ||
"type": "cppvsdbg", | ||
"name": "Python Debugger: Current File", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"windows": { | ||
"program": "${command:cmake.launchTargetDirectory}/FalcorTest.exe" | ||
}, | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${command:cmake.launchTargetDirectory}", | ||
"environment": [ | ||
{ | ||
"name": "FALCOR_DEVMODE", | ||
"value": "1" | ||
} | ||
], | ||
"visualizerFile": "${workspaceFolder}/Source/Falcor/Falcor.natvis" | ||
"program": "${file}", | ||
"console": "integratedTerminal" | ||
}, | ||
{ | ||
// Launch configuration for Python example. | ||
"name": "Python Example", | ||
"name": "Selected CMake Target", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"windows": { | ||
"program": "${config:python.defaultInterpreterPath}" | ||
}, | ||
"args": [ | ||
"${workspaceFolder}/scripts/internal/python/simple.py" | ||
], | ||
"program": "${command:cmake.launchTargetPath}", | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${command:cmake.launchTargetDirectory}", | ||
"environment": [ | ||
{ | ||
"name": "FALCOR_DEVMODE", | ||
"value": "1" | ||
} | ||
], | ||
"internalConsoleOptions": "openOnSessionStart", | ||
"visualizerFile": "${workspaceFolder}/Source/Falcor/Falcor.natvis" | ||
"cwd": "${command:cmake.launchTargetDirectory}" | ||
} | ||
] | ||
} |
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
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
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 @@ | ||
numpy |
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,3 @@ | ||
typing_extensions | ||
pre-commit | ||
pytest |