Skip to content

Commit 6860b3f

Browse files
emersionHamdaanQuatil
authored andcommitted
Bump minimum required CMake version to 3.10 (#203)
Fixes the following deprecation warning: Compatibility with CMake < 3.10 will be removed from a future version of CMake. CMake 3.10 was released in 2017.
1 parent daf8005 commit 6860b3f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

android/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
cmake_minimum_required(VERSION 3.6.0)
15+
cmake_minimum_required(VERSION 3.10.0)
1616
project("webcrypto" LANGUAGES C)
1717

1818
enable_language(ASM)

linux/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.6.0)
1+
cmake_minimum_required(VERSION 3.10.0)
22
set(PROJECT_NAME "webcrypto")
33
project(${PROJECT_NAME} LANGUAGES C CXX)
44

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#
2222
# This script is very similar to platform specific build scripts.
2323

24-
cmake_minimum_required(VERSION 3.6.0)
24+
cmake_minimum_required(VERSION 3.10.0)
2525
project(webcrypto)
2626

2727
# Set C++ standard to C++17 for BoringSSL compatibility

0 commit comments

Comments
 (0)