From 2129e3ef05ecbb823e77fbd2c9579e9a42c8b9ff Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Fri, 29 Dec 2023 16:16:57 +0200 Subject: [PATCH] cmake : fix trailing whitespace --- examples/main-cmake-pkg/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/main-cmake-pkg/CMakeLists.txt b/examples/main-cmake-pkg/CMakeLists.txt index a29a0ac37..deb77d588 100644 --- a/examples/main-cmake-pkg/CMakeLists.txt +++ b/examples/main-cmake-pkg/CMakeLists.txt @@ -9,7 +9,7 @@ find_package(Llama 0.0.1 REQUIRED) # source tree, main-cmake-pkg pretends the dependencies are built-in. set(_common_path "${CMAKE_CURRENT_LIST_DIR}/../../common") add_library(common OBJECT) -file(GLOB _common_files +file(GLOB _common_files "${_common_path}/*.h" "${_common_path}/*.cpp" )