We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cmake.build-type = Debug
1 parent f1b471f commit 9baaa4fCopy full SHA for 9baaa4f
.devcontainer/devcontainer.json
@@ -9,6 +9,10 @@
9
// "forwardPorts": [],
10
// "postCreateCommand": "pip3 install --user -r requirements.txt",
11
12
+ "containerEnv": {
13
+ "BUILD_DEBUG": "1"
14
+ },
15
+
16
"customizations": {
17
"vscode": {
18
"settings": {
pyproject.toml
@@ -116,6 +116,11 @@ wheel.packages = ["src/dave"]
116
cmake.build-type = "Release"
117
cmake.define = { BUILD_SHARED_LIBS = "OFF" }
118
119
+# Default to debug builds in devcontainer (which sets this env variable globally)
120
+[[tool.scikit-build.overrides]]
121
+if.env.BUILD_DEBUG = true
122
+cmake.build-type = "Debug"
123
124
125
[tool.cibuildwheel]
126
skip = [
0 commit comments