1
0
mirror of https://github.com/ggerganov/whisper.cpp.git synced 2025-07-06 09:21:47 +02:00

cmake : fix json INTERFACE library ()

This commit is contained in:
Xingchen Song(宋星辰)
2024-05-13 19:29:39 +08:00
committed by GitHub
parent 7705dc52da
commit b6bbce4ae9

@ -58,8 +58,8 @@ if (WHISPER_SDL2)
endif() endif()
# add json lib # add json lib
add_library(json_cpp INTERFACE json.hpp) add_library(json_cpp INTERFACE)
set_target_properties(json_cpp PROPERTIES FOLDER "libs") target_include_directories(json_cpp INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
# examples # examples