diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f0c47c..3c524c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,14 +41,8 @@ jobs: github-binarycache: true - name: Checkout uses: actions/checkout@v4.1.2 - - name: Configure and Build Project - uses: threeal/cmake-action@main - with: - c-compiler: clang - cxx-compiler: clang++ - source-dir: ./src - # Pass the toolchain file to the cmake-action - options: ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} VCPKG_TARGET_TRIPLET=x64-windows + - name: Cmake Build and Configure + run: cmake ${{ steps.vcpkg.outputs.toolchain_file }} -S ./src -B ./src/build - name: Copy assets run: cp -r ./Assets ./src/build/Assets - name: Upload Build Artifacts