Clean build settings

This commit is contained in:
haru-s 2023-01-31 18:58:00 +09:00
parent 37b3ea7dc5
commit e33fac80ee
6 changed files with 71 additions and 29 deletions

29
.vscode/launch.json vendored
View file

@ -1,29 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch (Windows) textbox",
"type": "cppvsdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "./examples/textbox/bin/textbox_sample.exe",
"console": "internalConsole"
},
{
"name": "C++ Launch (Windows) trackbar",
"type": "cppvsdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "./examples/trackbar/bin/trackbar_sample.exe",
"console": "internalConsole"
},
{
"name": "C++ Launch (Windows) buttons",
"type": "cppvsdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "./examples/buttons/bin/buttons_example.exe",
"console": "internalConsole"
}
]
}

13
examples/buttons/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch (Windows) buttons",
"type": "cppvsdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "./bin/buttons_example.exe",
"console": "internalConsole"
}
]
}

13
examples/textbox/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch (Windows) textbox",
"type": "cppvsdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "./bin/textbox_sample.exe",
"console": "internalConsole"
}
]
}

13
examples/trackbar/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch (Windows) trackbar",
"type": "cppvsdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "./bin/trackbar_sample.exe",
"console": "internalConsole"
}
]
}

20
examples/trackbar/.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "dub",
"run": true,
"cwd": ".",
"compiler": "$current",
"archType": "$current",
"buildType": "$current",
"configuration": "$current",
"problemMatcher": [
"$dmd"
],
"group": "build",
"label": "dub: Build trackbar_sample",
"detail": "dub build --compiler=dmd.EXE -a=x86_64 -b=debug -c=application"
}
]
}

View file

@ -0,0 +1,12 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"d.projectImportPaths": [
"..\\..\\..\\dfl\\source"
]
}
}