Skip to content

CMake update cmake_minimum_required (VERSION 3.10) #5187

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

Merged
merged 1 commit into from
Dec 17, 2024
Merged
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
project (Jerry C)

if(NOT DEFINED PYTHON)
Expand Down
2 changes: 1 addition & 1 deletion jerry-core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
set(JERRY_CORE_NAME jerry-core)
project (${JERRY_CORE_NAME} C)

Expand Down
2 changes: 1 addition & 1 deletion jerry-ext/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
set(JERRY_EXT_NAME jerry-ext)
project (${JERRY_EXT_NAME} C)

Expand Down
2 changes: 1 addition & 1 deletion jerry-main/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
project (jerry-main C)

# Optional build settings
Expand Down
2 changes: 1 addition & 1 deletion jerry-math/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
set(JERRY_MATH_NAME jerry-math)
project (${JERRY_MATH_NAME} C)

Expand Down
2 changes: 1 addition & 1 deletion jerry-port/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
set(JERRY_PORT_NAME jerry-port)
project (${JERRY_PORT_NAME} C)

Expand Down
2 changes: 1 addition & 1 deletion tests/unit-core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
project (unit-core C)

if (NOT IS_ABSOLUTE ${FEATURE_PROFILE})
Expand Down
2 changes: 1 addition & 1 deletion tests/unit-doc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
project (unit-doc C)
find_package(PythonInterp REQUIRED)

Expand Down
2 changes: 1 addition & 1 deletion tests/unit-ext/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
project (unit-ext C)

set(INCLUDE_UNIT_EXT ${CMAKE_CURRENT_SOURCE_DIR})
Expand Down
2 changes: 1 addition & 1 deletion tests/unit-ext/module/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
set(JERRYX_MODULE_UNITTEST_NAME unit-test-jerry-module)
project (${JERRYX_MODULE_UNITTEST_NAME} C)

Expand Down
2 changes: 1 addition & 1 deletion tests/unit-math/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required (VERSION 2.8.12)
cmake_minimum_required (VERSION 3.10)
project (unit-math C)

# Unit tests main modules
Expand Down
Loading