| 1234567891011121314151617181920212223242526 |
- # Copyright (C) 2019 Intel Corporation. All rights reserved.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- include(FetchContent)
- set(LLAMA_SOURCE_DIR "${WAMR_ROOT_DIR}/core/deps/llama.cpp")
- if(EXISTS ${LLAMA_SOURCE_DIR})
- message("Use existed source code under ${LLAMA_SOURCE_DIR}")
- FetchContent_Declare(
- llamacpp
- SOURCE_DIR ${LLAMA_SOURCE_DIR}
- )
- else()
- message("download source code and store it at ${LLAMA_SOURCE_DIR}")
- FetchContent_Declare(
- llamacpp
- GIT_REPOSITORY https://github.com/ggerganov/llama.cpp.git
- GIT_TAG b3573
- SOURCE_DIR ${LLAMA_SOURCE_DIR}
- )
- endif()
- set(LLAMA_BUILD_TESTS OFF)
- set(LLAMA_BUILD_EXAMPLES OFF)
- set(LLAMA_BUILD_SERVER OFF)
- FetchContent_MakeAvailable(llamacpp)
|