Spaces:
Running
Running
Andy Maloney
commited on
cmake : add headers to target (#298)
Browse filesThis will show the header files in IDEs.
- 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 |
|