File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.8)
2- project ("llama .cpp" )
2+ project ("alpaca .cpp" )
33
44set (CMAKE_CXX_STANDARD 20)
55set (CMAKE_CXX_STANDARD_REQUIRED true )
@@ -104,8 +104,8 @@ endif()
104104# set(LLAMA_EXTRA_FLAGS ${LLAMA_EXTRA_FLAGS} -DGGML_PERF)
105105# endif()
106106
107- add_executable (llama
108- main .cpp
107+ add_executable (chat
108+ chat .cpp
109109 utils.cpp
110110 utils.h)
111111
@@ -119,10 +119,10 @@ add_library(ggml
119119 ggml.h)
120120
121121target_compile_definitions (ggml PUBLIC ${LLAMA_EXTRA_FLAGS} )
122- target_compile_definitions (llama PUBLIC ${LLAMA_EXTRA_FLAGS} )
122+ target_compile_definitions (chat PUBLIC ${LLAMA_EXTRA_FLAGS} )
123123target_compile_definitions (quantize PUBLIC ${LLAMA_EXTRA_FLAGS} )
124124
125125target_link_libraries (ggml PRIVATE ${LLAMA_EXTRA_LIBS} )
126126target_include_directories (ggml PUBLIC .)
127127target_link_libraries (quantize PRIVATE ggml)
128- target_link_libraries (llama PRIVATE ggml)
128+ target_link_libraries (chat PRIVATE ggml)
You can’t perform that action at this time.
0 commit comments