Felix 07d04280be
examples : clean up common code ()
move some utility functions into common.h
2024-02-19 10:50:15 +02:00

10 lines
240 B
CMake

if (WHISPER_SDL2)
# stream
set(TARGET lsp)
add_executable(${TARGET} lsp.cpp)
include(DefaultTargetOptions)
target_link_libraries(${TARGET} PRIVATE common json_cpp common-sdl whisper ${CMAKE_THREAD_LIBS_INIT})
endif ()