WillAyd opened a new pull request, #2719: URL: https://github.com/apache/arrow-adbc/pull/2719
This is a minor change that converts the Meson configuration to using feature options instead of booleans. The feature option is documented here: https://mesonbuild.com/Build-options.html#features In short, the feature option makes it easier to switch between opting in and opting out of settings. By default, you are opted out of everything and need to explicitly opt in via: ```sh meson setup -Dpostgresql=enabled -Dsqlite=enabled ``` However, with auto features, you can turn everything on and instead opt out of what you do not want to build: ```sh meson setup -Dauto_features=enabled -Dsnowflake=disabled -Dbigquery=disabled ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
