Skip to content

Commit

Permalink
dylib
Browse files Browse the repository at this point in the history
  • Loading branch information
mryzhov committed Feb 7, 2024
1 parent 3f1e360 commit 9d9522e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
shell: bash
runs-on: 'macos-13-large'
env:
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input
CMAKE_BUILD_TYPE: 'Release'
CMAKE_GENERATOR: 'Ninja Multi-Config'
CMAKE_CXX_COMPILER_LAUNCHER: ccache
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
set(TARGET_NAME "openvino_tokenizers")

FILE(GLOB SRC *.cpp)
add_library(${TARGET_NAME} MODULE ${SRC})
add_library(${TARGET_NAME} SHARED ${SRC})
target_compile_definitions(${TARGET_NAME} PRIVATE IMPLEMENT_OPENVINO_EXTENSION_API)
target_link_libraries(${TARGET_NAME} PRIVATE openvino::runtime)

Expand Down

0 comments on commit 9d9522e

Please sign in to comment.