This is an automated email from the ASF dual-hosted git repository. szaszm pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit d8b90e0f4d8783e8aac0a4ec387c988f5b3bc1da Author: Gabor Gyimesi <[email protected]> AuthorDate: Wed May 22 13:23:20 2024 +0200 MINIFICPP-2382 Add PDH and Lua extensions to the default build Closes #1794 Signed-off-by: Marton Szasz <[email protected]> --- cmake/MiNiFiOptions.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/MiNiFiOptions.cmake b/cmake/MiNiFiOptions.cmake index 6c98de94d..b6f8a7ae4 100644 --- a/cmake/MiNiFiOptions.cmake +++ b/cmake/MiNiFiOptions.cmake @@ -81,7 +81,7 @@ if (WIN32) add_minifi_option(MINIFI_INCLUDE_VC_REDIST_DLLS "Include Visual C++ Redistributable DLLs with the MSI generated by CPack. The resulting MSI is not distributable under Apache 2.0." OFF) add_minifi_option(MINIFI_INCLUDE_UCRT_DLLS "Redistribute Universal C Runtime DLLs with the MSI generated by CPack. The resulting MSI is not distributable under Apache 2.0." OFF) add_minifi_option(ENABLE_WEL "Enables the suite of Windows Event Log extensions." ON) - add_minifi_option(ENABLE_PDH "Enables PDH support." OFF) + add_minifi_option(ENABLE_PDH "Enables PDH support." ON) add_minifi_option(ENABLE_SMB "Enables SMB support." ON) endif() @@ -102,7 +102,7 @@ add_minifi_option(ENABLE_SQL "Enables the SQL Suite of Tools." ON) add_minifi_option(ENABLE_MQTT "Enables the mqtt extension." ON) add_minifi_option(ENABLE_PCAP "Enables the PCAP extension." OFF) add_minifi_option(ENABLE_LIBRDKAFKA "Enables the librdkafka extension." ON) -add_minifi_option(ENABLE_LUA_SCRIPTING "Enables lua scripting" OFF) +add_minifi_option(ENABLE_LUA_SCRIPTING "Enables lua scripting" ON) add_minifi_option(ENABLE_PYTHON_SCRIPTING "Enables python scripting" ON) add_minifi_option(ENABLE_SENSORS "Enables the Sensors package." OFF) add_minifi_option(ENABLE_USB_CAMERA "Enables USB camera support." OFF)
