From 7f7c8de1f5c257c0f1c2a4608dbf34fc780ff83f Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Wed, 21 Dec 2022 09:43:01 -0500 Subject: [PATCH] {cmake} Add headers to target This will show the header files in IDEs. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d5a5606..60cfd4d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -184,7 +184,9 @@ endif() set(TARGET whisper) add_library(${TARGET} + ggml.h ggml.c + whisper.h whisper.cpp )