Skip to content

Commit

Permalink
Better dep on msgpack-c
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad0 committed Oct 17, 2023
1 parent cbeed2b commit fe6bf6b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions circuits/cpp/cmake/msgpack.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
include(ExternalProject)

# External project: Download msgpack-c from GitHu
set(MSGPACK_PREFIX "${CMAKE_BINARY_DIR}/_deps/msgpack-c")
set(MSGPACK_INCLUDE "${MSGPACK_PREFIX}/src/msgpack-c/include")

ExternalProject_Add(
msgpack-c
PREFIX ${MSGPACK_PREFIX}
GIT_REPOSITORY "https://github.com/AztecProtocol/msgpack-c.git"
GIT_TAG af447c28f0bafe761290a72754212436e530941b
CONFIGURE_COMMAND "" # No configure step
BUILD_COMMAND "" # No build step
INSTALL_COMMAND "" # No install step
UPDATE_COMMAND "" # No update step
)

0 comments on commit fe6bf6b

Please sign in to comment.