Skip to content

Commit f094226

Browse files
committed
update cmake minimum version
1 parent 5c8b0d6 commit f094226

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

demo/c/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.4)
1+
cmake_minimum_required(VERSION 3.10)
22
project(pv_speaker_demo VERSION 1.0.0 DESCRIPTION "Picovoice audio player library demo.")
33

44
if(NOT PV_SPEAKER_PLATFORM)

demo/c/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PvSpeaker is an easy-to-use, cross-platform audio player designed for real-time
88

99
## Requirements
1010

11-
- CMake 3.4+.
11+
- CMake 3.10+.
1212
- C99 compatible compiler.
1313
- **Windows**: MinGW.
1414

project/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.4)
1+
cmake_minimum_required(VERSION 3.10)
22
project(pv_speaker VERSION 1.0.0 DESCRIPTION "Picovoice audio player library.")
33

44
set(CMAKE_C_STANDARD 99)

project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
- CMake 3.4+.
5+
- CMake 3.10+.
66
- C99 compatible compiler.
77
- **Windows**: MinGW.
88

project/node/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.4)
1+
cmake_minimum_required(VERSION 3.10)
22
project(pv_speaker_napi)
33

44
include(ExternalProject)
@@ -16,6 +16,7 @@ endif ()
1616

1717
ExternalProject_Add(
1818
node_headers
19+
DOWNLOAD_EXTRACT_TIMESTAMP ON
1920
URL https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-headers.tar.xz
2021
CONFIGURE_COMMAND ""
2122
BUILD_COMMAND ""

0 commit comments

Comments
 (0)