mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-01-26 09:09:50 +00:00
* add dry sampler * use vocab instead of model in dry_init function * fix compile error for build test --------- Co-authored-by: firecoperana <firecoperana>
10 lines
319 B
CMake
10 lines
319 B
CMake
set(TARGET rpc-server)
|
|
add_executable(${TARGET} rpc-server.cpp)
|
|
target_link_libraries(${TARGET} PRIVATE ggml)
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_17)
|
|
if (MSVC)
|
|
target_link_options(${TARGET} PRIVATE
|
|
$<$<CONFIG:DEBUG>:/STACK:20971520,1048576 >
|
|
$<$<CONFIG:RELEASE>:/STACK:20971520,1048576>
|
|
)
|
|
endif() |