summaryrefslogtreecommitdiff
path: root/examples/CMakeLists.txt
diff options
context:
space:
mode:
authorSteward Garcia <57494570+FSSRepo@users.noreply.github.com>2023-05-21 11:51:18 -0600
committerGitHub <noreply@github.com>2023-05-21 20:51:18 +0300
commit7e4ea5beff567f53be92f75f9089e6f11fa5dabd (patch)
tree1979bd9d613a00c047885651ea36230fdfad6218 /examples/CMakeLists.txt
parent7780e4f479dc5af106287c164b8e186cd9b6215c (diff)
examples : add server example with REST API (#1443)
* Added httplib support * Added readme for server example * fixed some bugs * Fix the build error on Macbook * changed json11 to nlohmann-json * removed some whitespaces * remove trailing whitespace * added support custom prompts and more functions * some corrections and added as cmake option
Diffstat (limited to 'examples/CMakeLists.txt')
-rw-r--r--examples/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index 74d0350d..e4ce5aca 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -37,4 +37,7 @@ else()
add_subdirectory(save-load-state)
add_subdirectory(benchmark)
add_subdirectory(baby-llama)
+ if(LLAMA_BUILD_SERVER)
+ add_subdirectory(server)
+ endif()
endif()