Skip to content

Commit

Permalink
[dispatch] Fix bug with missing libdl as link dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-kabanov committed Dec 9, 2024
1 parent 277e5cb commit 4175b15
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions oif/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ add_library(oif_dispatch SHARED dispatch.c)
target_include_directories(oif_dispatch PUBLIC ${CMAKE_SOURCE_DIR}/include)
target_include_directories(oif_dispatch PUBLIC ${CMAKE_SOURCE_DIR}/oif/include)
target_link_libraries(oif_dispatch PRIVATE oif_c_util)
target_link_libraries(oif_dispatch PRIVATE dl)
target_link_libraries(oif_dispatch PRIVATE HashMap::HashMap)

add_subdirectory(lang_c)
Expand Down

0 comments on commit 4175b15

Please sign in to comment.