14 lines
348 B
CMake
14 lines
348 B
CMake
# Copyright (c) 2026 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
jerryscript
|
|
GIT_REPOSITORY https://github.com/jerryscript-project/jerryscript
|
|
GIT_TAG v2.4.0
|
|
)
|
|
|
|
FetchContent_MakeAvailable(jerryscript)
|
|
set(jerryscript_FOUND ON) |