File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ option(BUILD_JNI "Build C++ wrapper for JNI to expose the functionality to Java/
1414option (BUILD_STATIC "Build with static linkage" OFF )
1515option (ADD_MUCLIBC "Add -muclibc c flag" OFF )
1616option (BUILD_DEPENDENCIES "Whether or not to build depending libraries from source" ON )
17+ option (BUILD_PRODUCER_C "Whether or not to build KVS Producer C library from source" ON )
1718option (BUILD_OPENSSL_PLATFORM "If buildng OpenSSL what is the target platform" OFF )
1819option (BUILD_LOG4CPLUS_HOST "Specify host-name for log4cplus for cross-compilation" OFF )
1920
@@ -100,7 +101,7 @@ set(BUILD_COMMON_CURL
100101find_package (Threads)
101102find_package (PkgConfig REQUIRED)
102103
103- if (BUILD_DEPENDENCIES )
104+ if (BUILD_PRODUCER_C )
104105 set (DEPENDENCY_DOWNLOAD_PATH ${CMAKE_CURRENT_SOURCE_DIR} /dependency)
105106 if (NOT EXISTS ${DEPENDENCY_DOWNLOAD_PATH} )
106107 file (MAKE_DIRECTORY ${DEPENDENCY_DOWNLOAD_PATH} )
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ You can pass the following options to `cmake ..`.
8585* ` -DBUILD_GSTREAMER_PLUGIN ` -- Build kvssink GStreamer plugin
8686* ` -DBUILD_JNI ` -- Build C++ wrapper for JNI to expose the functionality to Java/Android
8787* ` -DBUILD_DEPENDENCIES ` -- Build depending libraries from source
88+ * ` -DBUILD_PRODUCER_C ` -- Build KVS Producer C library from source. Default is ON.
8889* ` -DBUILD_TEST=TRUE ` -- Build unit/integration tests, may be useful for confirm support for your device. ` ./tst/producerTest `
8990* ` -DCODE_COVERAGE ` -- Enable coverage reporting
9091* ` -DCOMPILER_WARNINGS ` -- Enable all compiler warnings
You can’t perform that action at this time.
0 commit comments