File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
set (TARGET embedding )
2
2
add_executable (${TARGET} embedding.cpp )
3
- target_link_libraries (${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT} )
3
+ target_link_libraries (${TARGET} PRIVATE common llama ggml ${CMAKE_THREAD_LIBS_INIT} )
4
4
target_compile_features (${TARGET} PRIVATE cxx_std_11 )
Original file line number Diff line number Diff line change 1
1
set (TARGET main )
2
2
add_executable (${TARGET} main.cpp )
3
- target_link_libraries (${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT} )
3
+ target_link_libraries (${TARGET} PRIVATE common llama ggml ${CMAKE_THREAD_LIBS_INIT} )
4
4
target_compile_features (${TARGET} PRIVATE cxx_std_11 )
Original file line number Diff line number Diff line change 1
1
set (TARGET perplexity )
2
2
add_executable (${TARGET} perplexity.cpp )
3
- target_link_libraries (${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT} )
3
+ target_link_libraries (${TARGET} PRIVATE common llama ggml ${CMAKE_THREAD_LIBS_INIT} )
4
4
target_compile_features (${TARGET} PRIVATE cxx_std_11 )
Original file line number Diff line number Diff line change 1
1
set (TARGET quantize )
2
2
add_executable (${TARGET} quantize.cpp )
3
- target_link_libraries (${TARGET} PRIVATE llama ${CMAKE_THREAD_LIBS_INIT} )
3
+ target_link_libraries (${TARGET} PRIVATE llama ggml ${CMAKE_THREAD_LIBS_INIT} )
4
4
target_compile_features (${TARGET} PRIVATE cxx_std_11 )
You can’t perform that action at this time.
0 commit comments