We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a635f4 commit 0dec788Copy full SHA for 0dec788
1 file changed
CMakeLists.txt
@@ -96,7 +96,15 @@ if (LLAMA_BUILD)
96
set(GGML_METAL_EMBED_LIBRARY "ON" CACHE BOOL "ggml: embed metal library" FORCE)
97
endif()
98
99
+
100
add_subdirectory(vendor/llama.cpp)
101
102
+ if (WIN32)
103
+ if (TARGET llama)
104
+ set_target_properties(llama PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON)
105
+ endif()
106
107
108
llama_cpp_python_install_target(llama)
109
llama_cpp_python_install_target(ggml)
110
0 commit comments