Skip to content

Commit

Permalink
ggml renamed to llama_ggml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgonzs13 committed Jul 26, 2024
1 parent e7893a3 commit 9b865b7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions llama_cpp_vendor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,18 @@ FetchContent_Declare(

FetchContent_MakeAvailable(llama)

# ggml
set_target_properties(
ggml PROPERTIES
OUTPUT_NAME "llama_ggml"
INTERFACE_INCLUDE_DIRECTORIES "$<BUILD_INTERFACE:${llama_SOURCE_DIR}/ggml/include>"
CXX_STANDARD 11
)

# llama
set_target_properties(
ggml build_info llama common PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "$<BUILD_INTERFACE:${llama_SOURCE_DIR}/ggml/include;${llama_SOURCE_DIR}/include;${llama_SOURCE_DIR}/common>"
build_info llama common PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "$<BUILD_INTERFACE:${llama_SOURCE_DIR}/include;${llama_SOURCE_DIR}/common>"
CXX_STANDARD 11
)

Expand Down

0 comments on commit 9b865b7

Please sign in to comment.