diff options
author | John Smith <67539080+kingsidelee@users.noreply.github.com> | 2023-10-25 01:48:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 20:48:45 +0300 |
commit | abd21fc99f1d35e2081e4c01dc09c71a86bf3c5a (patch) | |
tree | 432806f64eef36892aa6c7833c4de35aa44567ce /examples/main-cmake-pkg | |
parent | 2b4ea35e56792064598e922e46d081e02bc96b94 (diff) |
cmake : add missed dependencies (#3763)
Diffstat (limited to 'examples/main-cmake-pkg')
-rw-r--r-- | examples/main-cmake-pkg/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/main-cmake-pkg/CMakeLists.txt b/examples/main-cmake-pkg/CMakeLists.txt index 90813188..cb00edbb 100644 --- a/examples/main-cmake-pkg/CMakeLists.txt +++ b/examples/main-cmake-pkg/CMakeLists.txt @@ -16,6 +16,8 @@ add_library(common OBJECT ${_common_path}/console.cpp ${_common_path}/grammar-parser.h ${_common_path}/grammar-parser.cpp + ${_common_path}/sampling.h + ${_common_path}/sampling.cpp ) # WARNING: because build-info.h is auto-generated, it will only |