diff --git a/.gitignore b/.gitignore index b0332ae66d..1aae049c95 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ .qped .directory .idea +.vscode/ /builds /build_overrides.cmake build.release diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index 44440c9a78..0000000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "configurations": [ - { - "name": "Linux", - "includePath": [ - "${workspaceFolder}/**", - "/usr/include/**", - "/usr/local/include/**" - ], - "defines": [], - "compilerPath": "/usr/bin/gcc", - "cStandard": "c11", - "cppStandard": "c++11", - "intelliSenseMode": "gcc-x64", - "compileCommands": "${workspaceFolder}/build.debug/compile_commands.json", - "browse": { - "path": [ - "${workspaceFolder}/build.debug/", - "${workspaceFolder}/mscore/", - "${workspaceFolder}/libmscore/", - "${workspaceFolder}/assets/", - "${workspaceFolder}/audiofile/", - "${workspaceFolder}/awl/", - "${workspaceFolder}/build/", - "${workspaceFolder}/bww2mxml/", - "${workspaceFolder}/crashreporter/", - "${workspaceFolder}/demos/", - "${workspaceFolder}/doc/", - "${workspaceFolder}/effects/", - "${workspaceFolder}/fluid/", - "${workspaceFolder}/fonts/", - "${workspaceFolder}/fonttools/", - "${workspaceFolder}/manual/", - "${workspaceFolder}/midi/", - "${workspaceFolder}/miditools/", - "${workspaceFolder}/mscore/", - "${workspaceFolder}/mtest/", - "${workspaceFolder}/rdoc/", - "${workspaceFolder}/share/", - "${workspaceFolder}/synthesizer/", - "${workspaceFolder}/test/", - "${workspaceFolder}/telemetry/", - "${workspaceFolder}/thirdparty/", - "${workspaceFolder}/vtest/", - "${workspaceFolder}/zerberus/", - "${workspaceFolder}/*" - ] - } - } - ], - "version": 4 -} diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index f7bc352654..0000000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. - // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp - // List of extensions which should be recommended for users of this workspace. - "recommendations": [ - "ms-vscode.cpptools", - "ms-vscode.cmake-tools", - "twxs.cmake" - ], -} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 72333101bb..0000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - // 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 - "version": "0.2.0", - "configurations": [ - { - "name": "gdb debug from debug build", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/build.debug/main/mscore", - "args": ["-d"], - "stopAtEntry": false, - "cwd": "${workspaceFolder}", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ], - "miDebuggerPath": "/usr/bin/gdb" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index f2145b6af2..0000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "files.associations": { - "*.mei": "xml", - "*.musicxml ": "xml", - "*.odd": "xml", - "array": "cpp", - "atomic": "cpp", - "*.tcc": "cpp", - "cctype": "cpp", - "chrono": "cpp", - "clocale": "cpp", - "cmath": "cpp", - "cstdarg": "cpp", - "cstddef": "cpp", - "cstdint": "cpp", - "cstdio": "cpp", - "cstdlib": "cpp", - "ctime": "cpp", - "cwchar": "cpp", - "cwctype": "cpp", - "deque": "cpp", - "list": "cpp", - "unordered_map": "cpp", - "vector": "cpp", - "exception": "cpp", - "fstream": "cpp", - "functional": "cpp", - "initializer_list": "cpp", - "iosfwd": "cpp", - "iostream": "cpp", - "istream": "cpp", - "limits": "cpp", - "new": "cpp", - "numeric": "cpp", - "optional": "cpp", - "ostream": "cpp", - "ratio": "cpp", - "sstream": "cpp", - "stdexcept": "cpp", - "streambuf": "cpp", - "string_view": "cpp", - "system_error": "cpp", - "cinttypes": "cpp", - "type_traits": "cpp", - "tuple": "cpp", - "typeinfo": "cpp", - "utility": "cpp", - "memory": "cpp", - "qgroupbox": "cpp", - "qbytearray": "cpp", - "qcombobox": "cpp", - "bitset": "cpp", - "set": "cpp", - "__bit_reference": "cpp", - "__config": "cpp", - "__debug": "cpp", - "__errc": "cpp", - "__hash_table": "cpp", - "__locale": "cpp", - "__mutex_base": "cpp", - "__node_handle": "cpp", - "__split_buffer": "cpp", - "__threading_support": "cpp", - "__tree": "cpp", - "__verbose_abort": "cpp", - "any": "cpp", - "charconv": "cpp", - "cstring": "cpp", - "iomanip": "cpp", - "ios": "cpp", - "locale": "cpp", - "map": "cpp", - "mutex": "cpp", - "regex": "cpp", - "stack": "cpp", - "string": "cpp", - "thread": "cpp", - "unordered_set": "cpp", - "variant": "cpp", - "algorithm": "cpp", - "bit": "cpp", - "compare": "cpp", - "concepts": "cpp", - "iterator": "cpp", - "memory_resource": "cpp", - "random": "cpp", - "source_location": "cpp" - }, - "cmake.buildDirectory": "${workspaceRoot}/build.debug", - "cmake.configureOnOpen": true, - "uncrustify.configPath.linux": "tools/codestyle/uncrustify_musescore.cfg" -} \ No newline at end of file