Reshuffle folder structure

Reshuffle folder structure and update cmake.yml
This commit is contained in:
McMassiveNZ
2022-12-16 23:10:43 +01:00
parent 97a801e4a6
commit bb6eb1b24f
10 changed files with 17 additions and 15 deletions

View File

@@ -21,11 +21,6 @@ jobs:
matrix:
os: [windows-latest, ubuntu-latest]
BUILD_TYPE: [Debug, Release]
include:
- os: windows-latest
- BOOTSTRAP: bootstrap-vcpkg.bat
- os: ubuntu-latest
- BOOTSTRAP: bootstrap-vcpkg.sh
steps:
- name: checkout
@@ -33,8 +28,12 @@ jobs:
with:
submodules: true
- name: bootstrap-vcpkg
run: ${{github.workspace}}/external/vcpkg/${{matrix.BOOTSTRAP}}
- name: bootstrap vcpkg
if: runner.os == 'windows'
run: ${{github.workspace}}/external/vcpkg/bootstrap-vcpkg.bat -disableMetrics
if: runner.os != 'windows'
run: ${{github.workspace}}/external/vcpkg/bootstrap-vcpkg.sh -disableMetrics
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.