Skip to content

[lang] Update minimum requirement for CMAKE #8703

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion cmake/TaichiCAPI.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.17)

# This function creates a static target from OBJECT_TARGET, then link TARGET with the static target
#
Expand Down
2 changes: 1 addition & 1 deletion cmake/TaichiCAPITests.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.17)

set(C_API_TESTS_NAME taichi_c_api_tests)
if (WIN32)
Expand Down
2 changes: 1 addition & 1 deletion cmake/TaichiExamples.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.17)

set(EXAMPLES_NAME taichi_cpp_examples)

Expand Down
2 changes: 1 addition & 1 deletion cmake/TaichiTests.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.17)

set(TESTS_NAME taichi_cpp_tests)
if (WIN32)
Expand Down
Loading