]> git.ipfire.org Git - thirdparty/snort3.git/blobdiff - configure_cmake.sh
Pull request #4336: appid: appid cpu profiler table rows limit and totals
[thirdparty/snort3.git] / configure_cmake.sh
index 1e28e1907154c7df1260f1805a3f4b598ec726ad..9b312d6c5e79e84f18854fad104425b0f5724886 100755 (executable)
@@ -120,6 +120,11 @@ Optional Packages:
                             libuuid include directory
     --with-uuid-libraries=DIR
                             libuuid library directory
+    --with-libml-includes=DIR
+                            libml include directory
+    --with-libml-libraries=DIR
+                            libml library directory
+    --without-libml         build Snort ML with mock of LibML
 
 Some influential variable definitions:
     SIGNAL_SNORT_RELOAD=<int>
@@ -463,6 +468,15 @@ while [ $# -ne 0 ]; do
         --with-toolchain=*)
             append_cache_entry CMAKE_TOOLCHAIN_FILE PATH $optarg
             ;;
+        --with-libml-includes=*)
+            append_cache_entry ML_INCLUDE_DIR_HINT PATH $optarg
+            ;;
+        --with-libml-libraries=*)
+            append_cache_entry ML_LIBRARIES_DIR_HINT PATH $optarg
+            ;;
+        --without-libml)
+            append_cache_entry ENABLE_KAIZEN_MOCK BOOL true
+            ;;
         SIGNAL_SNORT_RELOAD=*)
             append_cache_entry SIGNAL_SNORT_RELOAD STRING $optarg
             ;;