mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-11-01 00:07:18 -04:00
8 lines
215 B
CMake
8 lines
215 B
CMake
add_library(ollama-hpp INTERFACE)
|
|
target_include_directories(ollama-hpp INTERFACE
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/ollama-hpp/include"
|
|
)
|
|
target_link_libraries(ollama-hpp INTERFACE
|
|
nlohmann_json::nlohmann_json
|
|
)
|