Browse Source
c-api: bump minimum cmake version to 3.12 (#8713)
`list(TRANSFORM)` was introduced in version 3.12.
pull/8717/head
dundargoc
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
crates/c-api/CMakeLists.txt
|
|
@ -1,4 +1,4 @@ |
|
|
|
cmake_minimum_required(VERSION 3.10) |
|
|
|
cmake_minimum_required(VERSION 3.12) |
|
|
|
project(wasmtime C) |
|
|
|
|
|
|
|
set(WASMTIME_USER_CARGO_BUILD_OPTIONS "" CACHE STRING "Additional cargo flags (such as --features) to apply to the build command") |
|
|
|