cmake : fixes

pull/29/head
Georgi Gerganov 2 years ago
parent 68f5962be6
commit 4a732b2879

@ -101,39 +101,12 @@ else()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mavx -mavx2 -mfma -mf16c") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mavx -mavx2 -mfma -mf16c")
endif() endif()
# ggml
set(TARGET ggml)
add_library(${TARGET} STATIC
ggml.c
)
target_include_directories(${TARGET} PUBLIC
.
)
target_link_libraries(${TARGET} PRIVATE m ${CMAKE_THREAD_LIBS_INIT})
if (BUILD_SHARED_LIBS)
target_link_libraries(${TARGET} PUBLIC
${CMAKE_DL_LIBS}
)
target_compile_definitions(${TARGET} PUBLIC
WHISPER_SHARED
)
endif()
target_compile_definitions(${TARGET} PUBLIC
${WHISPER_EXTRA_FLAGS}
)
# whisper # whisper
set(TARGET whisper) set(TARGET whisper)
add_library(${TARGET} SHARED add_library(${TARGET} SHARED
ggml.c
whisper.cpp whisper.cpp
) )
@ -141,7 +114,7 @@ target_include_directories(${TARGET} PUBLIC
. .
) )
target_link_libraries(${TARGET} PRIVATE ggml ${CMALE_THREAD_LIBS_INIT}) target_link_libraries(${TARGET} PRIVATE ${CMAKE_THREAD_LIBS_INIT})
if (BUILD_SHARED_LIBS) if (BUILD_SHARED_LIBS)
target_link_libraries(${TARGET} PUBLIC target_link_libraries(${TARGET} PUBLIC
@ -162,27 +135,22 @@ install(TARGETS ${TARGET}
ARCHIVE DESTINATION lib/static ARCHIVE DESTINATION lib/static
) )
# main if (WHISPER_STANDALONE)
# main
set(TARGET main) set(TARGET main)
add_executable(${TARGET} main.cpp)
add_executable(${TARGET} main.cpp) target_link_libraries(${TARGET} PRIVATE whisper ${CMAKE_THREAD_LIBS_INIT})
target_link_libraries(${TARGET} PRIVATE whisper) if (WHISPER_SUPPORT_SDL2)
# stream
# stream set(TARGET stream)
add_executable(${TARGET} stream.cpp)
set(TARGET stream) target_include_directories(${TARGET} PRIVATE ${SDL2_INCLUDE_DIRS})
target_link_libraries(${TARGET} PRIVATE whisper ${SDL2_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
add_executable(${TARGET} stream.cpp) endif ()
target_include_directories(${TARGET} PRIVATE ${SDL2_INCLUDE_DIRS}) if (WHISPER_BUILD_TESTS)
target_link_libraries(${TARGET} PRIVATE whisper ${SDL2_LIBRARIES})
# tests
if (WHISPER_BUILD_TESTS)
enable_testing() enable_testing()
add_subdirectory(tests) add_subdirectory(tests)
endif ()
endif () endif ()

Loading…
Cancel
Save