Skip to content

Commit

Permalink
scaffolding the project
Browse files Browse the repository at this point in the history
  • Loading branch information
tikikun committed Sep 26, 2023
1 parent 02ba1e5 commit cc4c23a
Show file tree
Hide file tree
Showing 4 changed files with 25,848 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ set(OPENSSL_USE_STATIC_LIBS TRUE)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_PREFIX_PATH ${CMAKE_CURRENT_SOURCE_DIR}/build_deps/_install) # This is the critical line for installing another package

add_subdirectory(llama.cpp)
add_executable(${PROJECT_NAME} main.cc)

# ##############################################################################
Expand All @@ -30,7 +31,7 @@ add_executable(${PROJECT_NAME} main.cc)
#
# and comment out the following lines
find_package(Drogon CONFIG REQUIRED)
target_link_libraries(${PROJECT_NAME} PRIVATE Drogon::Drogon)
target_link_libraries(${PROJECT_NAME} PRIVATE Drogon::Drogon common llama ${CMAKE_THREAD_LIBS_INIT})

# ##############################################################################

Expand Down

0 comments on commit cc4c23a

Please sign in to comment.