Skip to content

Commit 1a19c7c

Browse files
Fix the msgpack dependency as well (#275)
1 parent 385241f commit 1a19c7c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

CMakeLists.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,11 @@ if (REFLECTCPP_MSGPACK)
135135
list(APPEND REFLECT_CPP_SOURCES
136136
src/reflectcpp_msgpack.cpp
137137
)
138-
find_package(msgpack-c CONFIG REQUIRED)
138+
if(REFLECTCPP_USE_VCPKG)
139+
find_package(msgpack-c CONFIG REQUIRED)
140+
else()
141+
find_package(msgpack CONFIG REQUIRED)
142+
endif()
139143
target_link_libraries(reflectcpp PUBLIC msgpack-c)
140144
endif ()
141145

0 commit comments

Comments
 (0)