Skip to content

Commit 56ca932

Browse files
vkensouGordonSmith
authored andcommitted
chore: bump vcpkg and fix win32 CI build
Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent 45f4dd0 commit 56ca932

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ cmake_minimum_required(VERSION 3.5)
22

33
project(cmcpp LANGUAGES CXX)
44

5-
option(BUILD_SAMPLES "Build samples" ON)
5+
# Determine default for BUILD_SAMPLES: OFF on Windows, ON elsewhere
6+
set(_BUILD_SAMPLES_DEFAULT ON)
7+
if (WIN32)
8+
set(_BUILD_SAMPLES_DEFAULT OFF)
9+
endif()
10+
option(BUILD_SAMPLES "Build samples" ${_BUILD_SAMPLES_DEFAULT})
611
option(BUILD_TESTING "Build tests" ON)
712

813
add_library(cmcpp INTERFACE)

vcpkg

Submodule vcpkg updated 8361 files

vcpkg-configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"default-registry": {
33
"kind": "git",
4-
"baseline": "fba75d09065fcc76a25dcf386b1d00d33f5175af",
4+
"baseline": "120deac3062162151622ca4860575a33844ba10b",
55
"repository": "https://github.com/microsoft/vcpkg"
66
},
77
"registries": [

vcpkg_overlays/wasm-micro-runtime/portfile.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ vcpkg_from_github(
22
OUT_SOURCE_PATH SOURCE_PATH
33
REPO bytecodealliance/wasm-micro-runtime
44
REF "WAMR-${VERSION}"
5-
SHA512 9a1dc0dd17dbf9111cf66a2d6a49565d52a005e5a024a20291cb274d826077aac46ff050c63b71503083301dfb32179a0fd3bfe2eddffce0cfb81a42a60fa439
5+
SHA512 6f8b145172e8e79c8a20255e4875de5e4778c79f0ddf22d7e2e4258390d0770e180a8fdc75383bfb12310a2035bc8286ae76b474a8c2071a7be885c1d56c4b8c
66
HEAD_REF main
77
)
88

vcpkg_overlays/wasm-micro-runtime/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wasm-micro-runtime",
3-
"version": "2.2.0",
3+
"version": "2.4.1",
44
"port-version": 0,
55
"description": "WebAssembly Micro Runtime (WAMR) is a lightweight standalone WebAssembly (Wasm) runtime with small footprint, high performance and highly configurable features.",
66
"homepage": "https://github.com/bytecodealliance/wasm-micro-runtime",

0 commit comments

Comments
 (0)