From 788378d56208ae21adf0a05a8d93e234a176aafa Mon Sep 17 00:00:00 2001 From: alex2772 Date: Sat, 30 Aug 2025 03:11:36 +0300 Subject: [PATCH 1/2] use v142 --- .github/workflows/build.yml | 3 +++ CMakeLists.txt | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 566b9af..fefc416 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,9 @@ jobs: fail-fast: false matrix: os: [windows-latest, ubuntu-latest] + include: + - os: windows-latest + additional_cmake_flags: '-A x64 -DCMAKE_GENERATOR_TOOLSET=v142' steps: - name: Fetch sources diff --git a/CMakeLists.txt b/CMakeLists.txt index dbdab9f..8792790 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,13 +1,14 @@ # Standard routine cmake_minimum_required(VERSION 3.16) project(example_app - VERSION 0.0.11 # CI_PROJECT_VERSION + VERSION 0.0.12 # CI_PROJECT_VERSION ) option(BUILD_SHARED_LIBS "Build shared libs" OFF) option(AUIB_FORCE_PRECOMPILED "AUI.Boot: force precompiled dependencies" OFF) +option(AUIB_NO_PRECOMPILED "AUI.Boot: disable precompiled dependencies" ON) -set(AUI_VERSION v8.0.0-rc.8) +set(AUI_VERSION v8.0.0-rc.10) # Use AUI.Boot file( From f9dca4df2fae619a7196f37a059775a89d3698ba Mon Sep 17 00:00:00 2001 From: alex2772 Date: Sat, 30 Aug 2025 03:13:51 +0300 Subject: [PATCH 2/2] update aui --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8792790..d88d719 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ project(example_app option(BUILD_SHARED_LIBS "Build shared libs" OFF) option(AUIB_FORCE_PRECOMPILED "AUI.Boot: force precompiled dependencies" OFF) -option(AUIB_NO_PRECOMPILED "AUI.Boot: disable precompiled dependencies" ON) +option(AUIB_NO_PRECOMPILED "AUI.Boot: disable precompiled dependencies" OFF) set(AUI_VERSION v8.0.0-rc.10)