Skip to content

Commit 3599778

Browse files
committed
fix: detach common from the library
1 parent 656babd commit 3599778

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/server/utils.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "common.h"
44
#include "log.h"
55
#include "llama.h"
6-
#include "common/base64.hpp"
6+
#include "base64.hpp"
77

88
// increase max payload length to allow use of larger context size
99
#define CPPHTTPLIB_FORM_URL_ENCODED_PAYLOAD_MAX_LENGTH 1048576

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ add_library(llama
3232
unicode.h
3333
)
3434

35-
target_include_directories(llama PUBLIC . ../include ../common)
35+
target_include_directories(llama PUBLIC . ../include)
3636
target_compile_features (llama PUBLIC cxx_std_17) # don't bump
3737

3838
target_link_libraries(llama PUBLIC ggml)

0 commit comments

Comments
 (0)