We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbbd240 commit f4329c5Copy full SHA for f4329c5
1 file changed
CMakeLists.txt
@@ -1915,3 +1915,9 @@ if(ENABLE_NO_EXPORT)
1915
message(STATUS "Building with empty ZMQ_EXPORT macro")
1916
add_definitions(-DZMQ_NO_EXPORT)
1917
endif()
1918
+
1919
+if (ENABLE_CURVE)
1920
+ add_executable(curve_keygen tools/curve_keygen.cpp)
1921
+ target_link_libraries(curve_keygen libzmq)
1922
+ install(TARGETS curve_keygen RUNTIME DESTINATION bin)
1923
+endif()
0 commit comments