Skip to content

Commit

Permalink
CMake update cmake_minimum_required (VERSION 3.5)
Browse files Browse the repository at this point in the history
JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo luoyonggang@gmail.com
  • Loading branch information
lygstate committed Nov 14, 2024
1 parent 4fd4566 commit 06c35ea
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
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.5)
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.5)
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.5)
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.5)
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.5)
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.5)
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.5)
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.5)
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.5)
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.5)
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.5)
project (unit-math C)

# Unit tests main modules
Expand Down

0 comments on commit 06c35ea

Please sign in to comment.