diff --git a/C_Tempate/.vscode/launch.json b/C_Tempate/.vscode/launch.json deleted file mode 100644 index c64acf2..0000000 --- a/C_Tempate/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Debug", - "type": "cppdbg", - "request": "launch", - "args": [], - "stopAtEntry": true, - "cwd": "${workspaceFolder}/build", - "environment": [], - "externalConsole": false, - "linux": { - "MIMode": "gdb", - "miDebuggerPath": "gdb", - "program": "${workspaceFolder}/build/CTemplate", - "args": [ - "../puzzle.input" - ] - }, - "preLaunchTask": "build" - } - ] -} diff --git a/C_Tempate/.vscode/tasks.json b/C_Tempate/.vscode/tasks.json deleted file mode 100644 index 574e17d..0000000 --- a/C_Tempate/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "type": "shell", - "group": { - "kind": "build", - "isDefault": true - }, - "linux": { - "command": "bash", - "args": [ - "-c", - "'mkdir -p build && cd build && cmake .. && make'" - ] - } - }, - { - "label": "build & run", - "type": "shell", - "linux": { - "command": "bash", - "args": [ - "-c", - "'make run'" - ] - } - }, - { - "label": "clean", - "type": "shell", - "linux": { - "command": "bash", - "args": [ - "-c", - "'cd build && make clean'" - ] - } - } - ] -} diff --git a/C_Tempate/.editorconfig b/C_Template/.editorconfig similarity index 100% rename from C_Tempate/.editorconfig rename to C_Template/.editorconfig diff --git a/C_Tempate/.gitignore b/C_Template/.gitignore similarity index 100% rename from C_Tempate/.gitignore rename to C_Template/.gitignore diff --git a/C_Tempate/CMakeLists.txt b/C_Template/CMakeLists.txt similarity index 100% rename from C_Tempate/CMakeLists.txt rename to C_Template/CMakeLists.txt diff --git a/C_Tempate/docs/CMakeLists.txt b/C_Template/docs/CMakeLists.txt similarity index 100% rename from C_Tempate/docs/CMakeLists.txt rename to C_Template/docs/CMakeLists.txt diff --git a/C_Tempate/docs/Doxyfile b/C_Template/docs/Doxyfile similarity index 100% rename from C_Tempate/docs/Doxyfile rename to C_Template/docs/Doxyfile diff --git a/C_Tempate/include/CMakeLists.txt b/C_Template/include/CMakeLists.txt similarity index 100% rename from C_Tempate/include/CMakeLists.txt rename to C_Template/include/CMakeLists.txt diff --git a/C_Tempate/puzzle.input b/C_Template/puzzle.input similarity index 100% rename from C_Tempate/puzzle.input rename to C_Template/puzzle.input diff --git a/C_Tempate/src/CMakeLists.txt b/C_Template/src/CMakeLists.txt similarity index 100% rename from C_Tempate/src/CMakeLists.txt rename to C_Template/src/CMakeLists.txt diff --git a/C_Tempate/src/main.c b/C_Template/src/main.c similarity index 100% rename from C_Tempate/src/main.c rename to C_Template/src/main.c diff --git a/C_Tempate/tests/CMakeLists.txt b/C_Template/tests/CMakeLists.txt similarity index 100% rename from C_Tempate/tests/CMakeLists.txt rename to C_Template/tests/CMakeLists.txt diff --git a/C_Tempate/tests/src/CMakeLists.txt b/C_Template/tests/src/CMakeLists.txt similarity index 100% rename from C_Tempate/tests/src/CMakeLists.txt rename to C_Template/tests/src/CMakeLists.txt diff --git a/C_Tempate/tests/src/test.cpp b/C_Template/tests/src/test.cpp similarity index 100% rename from C_Tempate/tests/src/test.cpp rename to C_Template/tests/src/test.cpp