Andy Maloney commited on
Commit
0be4a11
·
unverified ·
1 Parent(s): 8517b79

cmake : add headers to target (#298)

Browse files

This will show the header files in IDEs.

Files changed (1) hide show
  1. CMakeLists.txt +2 -0
CMakeLists.txt CHANGED
@@ -184,7 +184,9 @@ endif()
184
  set(TARGET whisper)
185
 
186
  add_library(${TARGET}
 
187
  ggml.c
 
188
  whisper.cpp
189
  )
190
 
 
184
  set(TARGET whisper)
185
 
186
  add_library(${TARGET}
187
+ ggml.h
188
  ggml.c
189
+ whisper.h
190
  whisper.cpp
191
  )
192