Skip to content

Commit

Permalink
cmake : fixed the order of linking libraries for llama-quantize (#9450)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xarbirus authored Sep 12, 2024
1 parent 39f852f commit ff76e18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/quantize/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set(TARGET llama-quantize)
add_executable(${TARGET} quantize.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama common ${CMAKE_THREAD_LIBS_INIT})
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_include_directories(${TARGET} PRIVATE ../../common)
target_compile_features(${TARGET} PRIVATE cxx_std_11)

0 comments on commit ff76e18

Please sign in to comment.