diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..8392d15 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use flake \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7ab8279..02dff05 100755 --- a/.gitignore +++ b/.gitignore @@ -85,4 +85,5 @@ CMakeLists.txt.user* .vs/ out/ -.direnv \ No newline at end of file +.direnv +CMakeUserPresets.json \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..4690e6d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,34 @@ +{ + // 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) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/build/appqyouradio", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/build", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + }, + { + "description": "Set Disassembly Flavor to Intel", + "text": "-gdb-set disassembly-flavor intel", + "ignoreFailures": true + } + ], + "preLaunchTask": "CMake: build" + } + + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100755 index 3ff5300..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "cmake.sourceDirectory": "/home/dark/qyouradio/qyouradio" -} \ No newline at end of file diff --git a/CMakePresets.json b/CMakePresets.json deleted file mode 100644 index 56c4ce3..0000000 --- a/CMakePresets.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "version": 3, - "configurePresets": [ - { - "hidden": true, - "name": "Qt", - "cacheVariables": { - "CMAKE_PREFIX_PATH": "$env{QTDIR}" - }, - "vendor": { - "qt-project.org/Qt": { - "checksum": "wVa86FgEkvdCTVp1/nxvrkaemJc=" - } - } - } - ], - "vendor": { - "qt-project.org/Presets": { - "checksum": "67SmY24ZeVbebyKD0fGfIzb/bGI=" - } - } -} \ No newline at end of file diff --git a/CMakeUserPresets.json b/CMakeUserPresets.json deleted file mode 100644 index effda31..0000000 --- a/CMakeUserPresets.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "version": 3, - "configurePresets": [ - { - "name": "Qt-Debug", - "inherits": "Qt-Default", - "binaryDir": "${sourceDir}/out/build/debug", - "cacheVariables": { - "CMAKE_BUILD_TYPE": "Debug", - "CMAKE_CXX_FLAGS": "-DQT_QML_DEBUG" - }, - "environment": { - "QML_DEBUG_ARGS": "-qmljsdebugger=file:{3f7e14e5-0b0a-40bd-b3c6-76458ce37860},block" - } - }, - { - "name": "Qt-Release", - "inherits": "Qt-Default", - "binaryDir": "${sourceDir}/out/build/release", - "cacheVariables": { - "CMAKE_BUILD_TYPE": "Release" - } - }, - { - "hidden": true, - "name": "Qt-Default", - "inherits": "Qt 6.10", - "vendor": { - "qt-project.org/Default": { - "checksum": "v3ctz+mzI1f1qLo6LWnqM6tW8Wg=" - } - } - }, - { - "hidden": true, - "name": "Qt 6.10", - "inherits": "Qt", - "environment": { - "QTDIR": "C:/Users/ghostfox.LAMINAX/6.10.0/msvc2022_64" - }, - "architecture": { - "strategy": "external", - "value": "x64" - }, - "generator": "Ninja", - "vendor": { - "qt-project.org/Version": { - "checksum": "Xah8ShjeYPy6fpnjykj3JE6nE0A=" - } - } - } - ], - "vendor": { - "qt-project.org/Presets": { - "checksum": "AdCzqFTjZpvbc3nsDUfPr+pX6io=" - } - } -} \ No newline at end of file