diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 55ad957..ba98551 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - name: Install OpenSSL v3 (System) - run: sudo apt-get update && sudo apt-get install -y libssl-dev + run: sudo dnf update && sudo dnf install -y libssl-dev - name: Configure run: cmake --preset ${{ matrix.target }} diff --git a/.gitignore b/.gitignore index 5e2e34b..b23d456 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,4 @@ .local/ out/ [Bb]uild +/compile_commands.json diff --git a/.vscode/settings.json b/.vscode/settings.json index c0dc405..0a73760 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { "editor.formatOnSave": true, - "C_Cpp.clang_format_fallbackStyle": "Microsoft" + "C_Cpp.clang_format_fallbackStyle": "Microsoft", + "cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json" } \ No newline at end of file