Skip to content

Commit

Permalink
Merge branch 'main' into joelsmith/joelsmith/fix-address-type
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsmithTT authored Nov 26, 2024
2 parents 1901ee8 + db8a0d5 commit b2bdd5c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
10 changes: 2 additions & 8 deletions cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ function(fetch_dependencies)
GITHUB_REPOSITORY nanomsg/nng
GIT_TAG v1.8.0
OPTIONS
"BUILD_SHARED_LIBS ON"
"NNG_TESTS OFF"
"NNG_TOOLS OFF"
)
Expand Down Expand Up @@ -96,14 +97,7 @@ function(fetch_dependencies)
############################################################################################################################
# libuv (for process management)
############################################################################################################################
CPMAddPackage(
NAME libuv
GITHUB_REPOSITORY libuv/libuv
GIT_TAG v1.48.0
OPTIONS
"LIBUV_BUILD_TESTS OFF"
"LIBUV_BUILD_SHARED OFF"
)
CPMAddPackage(NAME libuv GITHUB_REPOSITORY libuv/libuv GIT_TAG v1.48.0 OPTIONS "LIBUV_BUILD_TESTS OFF")

############################################################################################################################
# fmt : https://github.com/fmtlib/fmt
Expand Down
5 changes: 3 additions & 2 deletions device/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,16 @@ target_include_directories(
)

# flatbuffers is public - exposed to tt_metal by tt_simulation_device_generated.h
# nng is public - exposed to tt_metal by tt_simulation_host.hpp
target_link_libraries(
device
PUBLIC
nng
flatbuffers
uv
PRIVATE
hwloc
nng
rt
uv_a
Boost::interprocess
fmt::fmt-header-only
yaml-cpp::yaml-cpp
Expand Down
1 change: 0 additions & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ target_link_libraries(
gtest
pthread
fmt::fmt-header-only
nng
)
target_include_directories(
test_common
Expand Down

0 comments on commit b2bdd5c

Please sign in to comment.