diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 389c28f..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/examples/buttons/.vscode/launch.json b/examples/buttons/.vscode/launch.json new file mode 100644 index 0000000..c31c41f --- /dev/null +++ b/examples/buttons/.vscode/launch.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/examples/textbox/.vscode/launch.json b/examples/textbox/.vscode/launch.json new file mode 100644 index 0000000..18a9d59 --- /dev/null +++ b/examples/textbox/.vscode/launch.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/examples/trackbar/.vscode/launch.json b/examples/trackbar/.vscode/launch.json new file mode 100644 index 0000000..d0356ac --- /dev/null +++ b/examples/trackbar/.vscode/launch.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/examples/trackbar/.vscode/tasks.json b/examples/trackbar/.vscode/tasks.json new file mode 100644 index 0000000..4b8b4a4 --- /dev/null +++ b/examples/trackbar/.vscode/tasks.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/examples/trackbar/trackbar.code-workspace b/examples/trackbar/trackbar.code-workspace new file mode 100644 index 0000000..7e696bc --- /dev/null +++ b/examples/trackbar/trackbar.code-workspace @@ -0,0 +1,12 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "d.projectImportPaths": [ + "..\\..\\..\\dfl\\source" + ] + } +} \ No newline at end of file