We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e24a838 commit 56fc4b3Copy full SHA for 56fc4b3
2 files changed
.github/workflows/build.yml
@@ -24,6 +24,9 @@ jobs:
24
fail-fast: false
25
matrix:
26
os: [windows-latest, ubuntu-latest]
27
+ include:
28
+ - os: windows-latest
29
+ additional_cmake_flags: '-A x64 -DCMAKE_GENERATOR_TOOLSET=v142'
30
31
steps:
32
- name: Fetch sources
CMakeLists.txt
@@ -1,13 +1,14 @@
1
# Standard routine
2
cmake_minimum_required(VERSION 3.16)
3
project(example_app
4
- VERSION 0.0.11 # CI_PROJECT_VERSION
+ VERSION 0.0.12 # CI_PROJECT_VERSION
5
)
6
7
option(BUILD_SHARED_LIBS "Build shared libs" OFF)
8
option(AUIB_FORCE_PRECOMPILED "AUI.Boot: force precompiled dependencies" OFF)
9
+option(AUIB_NO_PRECOMPILED "AUI.Boot: disable precompiled dependencies" OFF)
10
-set(AUI_VERSION v8.0.0-rc.8)
11
+set(AUI_VERSION v8.0.0-rc.10)
12
13
# Use AUI.Boot
14
file(
0 commit comments