diff options
author | Olivier Chafik <ochafik@users.noreply.github.com> | 2024-04-15 18:35:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 18:35:21 +0100 |
commit | 7593639ce335e8d7f89aa9a54d616951f273af60 (patch) | |
tree | 936e7ef3214f03ebf1698292022be1a23ee991b0 /tests | |
parent | 132f55795e51094954f1b1f647f97648be724a3a (diff) |
`main`: add --json-schema / -j flag (#6659)
* main: add --json-schema / -j
* json: move json-schema-to-grammar to common lib
* json: fix zig build
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b5d7bb59..89f23ca2 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -25,7 +25,7 @@ function(llama_test source) add_executable(${TEST_TARGET} ${source} get-model.cpp) install(TARGETS ${TEST_TARGET} RUNTIME) - target_link_libraries(${TEST_TARGET} PRIVATE common json-schema-to-grammar) + target_link_libraries(${TEST_TARGET} PRIVATE common) add_test( NAME ${TEST_TARGET} WORKING_DIRECTORY ${LLAMA_TEST_WORKING_DIRECTORY} |