diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 1f559a7..742dd7c 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -23,19 +23,3 @@ jobs: run: cmake --build ${{ github.workspace }}/.out --config Debug --target clean --parallel 48 - name: '[linux | gcc] => cmake - build' run: cmake --build ${{ github.workspace }}/.out --config Debug --target roguelite --parallel 48 - - # linux / clang build - - name: '[linux | clang] => cmake - delete cache' - run: rm -rf ${{ github.workspace }}/.out/* - - name: '[linux | clang] => cmake - configure' - run: > - cmake -B ${{ github.workspace }}/.out - -DCMAKE_CXX_COMPILER=clang++ - -DCMAKE_C_COMPILER=clang - -DCMAKE_BUILD_TYPE=Debug - -S ${{ github.workspace }} - -G Ninja - - name: '[linux | clang] => cmake - clean' - run: cmake --build ${{ github.workspace }}/.out --config Debug --target clean --parallel 48 - - name: '[linux | clang] => cmake - build' - run: cmake --build ${{ github.workspace }}/.out --config Debug --target roguelite --parallel 48 diff --git a/.gitmodules b/.gitmodules index 008f729..a04cf59 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,8 +1,8 @@ -[submodule "engine"] +[submodule "extern/godot-engine"] path = extern/godot-engine url = https://github.com/godotengine/godot.git branch = 4.2 -[submodule "godot/godot-cpp"] +[submodule "extern/godot-cpp"] path = extern/godot-cpp url = https://github.com/godotengine/godot-cpp.git branch = 4.2 diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 5476db9..f8bc597 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,21 +1,7 @@ { "recommendations": [ "ms-vscode.cpptools", - "twxs.cmake", - "josetr.cmake-language-support-vscode", "ms-vscode.cmake-tools", - "eamodio.gitlens", - "alfish.godot-files", - "ms-python.python", - "ms-vscode-remote.remote-ssh", - "ms-vscode.remote-explorer", - "yzhang.markdown-all-in-one", - "foxundermoon.shell-format", - "calro.vscode-theme-one-dark-muted", - "jeff-hykin.better-cpp-syntax", - "ibm.output-colorizer", "xaver.clang-format", - "bierner.docs-view", - "donjayamanne.githistory" ] }