mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 21:39:52 +00:00
21 lines
424 B
CMake
21 lines
424 B
CMake
|
# common
|
||
|
|
||
|
set(TARGET common)
|
||
|
|
||
|
add_library(${TARGET} OBJECT
|
||
|
common.h
|
||
|
common.cpp
|
||
|
console.h
|
||
|
console.cpp
|
||
|
grammar-parser.h
|
||
|
grammar-parser.cpp
|
||
|
)
|
||
|
|
||
|
if (BUILD_SHARED_LIBS)
|
||
|
set_target_properties(${TARGET} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
||
|
endif()
|
||
|
|
||
|
target_include_directories(${TARGET} PUBLIC .)
|
||
|
target_compile_features(${TARGET} PUBLIC cxx_std_11)
|
||
|
target_link_libraries(${TARGET} PRIVATE llama)
|