Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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" OFF)

set(AUI_VERSION v8.0.0-rc.8)
set(AUI_VERSION v8.0.0-rc.10)

# Use AUI.Boot
file(
Expand Down
Loading