diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index b97d5c0..1b28310 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -19,8 +19,6 @@ jobs: strategy: matrix: include: - - distro: debian - version: 11 - distro: debian version: 12 - distro: ubuntu @@ -48,6 +46,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Git config safe directory shell: bash @@ -90,8 +89,6 @@ jobs: strategy: matrix: include: - - distro: debian - version: 11 - distro: debian version: 12 - distro: ubuntu @@ -119,6 +116,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Git config safe directory shell: bash diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6f3833e..ff401e2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,8 +38,6 @@ jobs: strategy: matrix: include: - - distro: debian - version: 11 - distro: debian version: 12 - distro: ubuntu @@ -67,6 +65,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Git config safe directory shell: bash @@ -109,8 +108,6 @@ jobs: strategy: matrix: include: - - distro: debian - version: 11 - distro: debian version: 12 - distro: ubuntu @@ -141,6 +138,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Git config safe directory shell: bash @@ -194,6 +192,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Create Build Environment shell: bash diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 343aed3..cdadc87 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -26,6 +26,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' + fetch-depth: 0 - name: Setup vcpkg uses: lukka/run-vcpkg@v11 diff --git a/CMakeLists.txt b/CMakeLists.txt index 71fe053..67e758d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,7 +148,8 @@ if(UNIX) endif(UNIX) if (WIN32) - add_compile_options("-D_WIN32_WINNT=0x0601") + add_compile_definitions(_WIN32_WINNT=0x0A00) + add_compile_options("/bigobj") endif(WIN32) diff --git a/vcpkg b/vcpkg index 6353ece..5bf0c55 160000 --- a/vcpkg +++ b/vcpkg @@ -1 +1 @@ -Subproject commit 6353ece09f6cebc34413ea04e69beab3fece73c2 +Subproject commit 5bf0c55239da398b8c6f450818c9e28d36bf9966 diff --git a/vcpkg.json b/vcpkg.json index cc7e74f..3809482 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -15,5 +15,12 @@ "rapidjson", "sol2", "curl" - ] + ], + "overrides": [ + { + "name": "sol2", + "version": "3.3.1" + } + ], + "builtin-baseline": "5bf0c55239da398b8c6f450818c9e28d36bf9966" }