meson: add Meson build system support - #444
Open
bgermann wants to merge 1 commit into
Open
Conversation
Add initial Meson build system configuration for Enchant, replacing the existing Autotools-based build with a modern, fast alternative. Includes: - Root meson.build with project setup, dependency checks, and config.h generation - libgnu/meson.build for gnulib integration with meson-native header processing - lib/meson.build for shared library (libenchant) build - src/meson.build for command-line tool build (enchant, enchant-lsmod) - providers/meson.build for provider module builds (hunspell, nuspell, aspell, etc.) - tests/meson.build for C++ unit tests with mock providers - program-tests/meson.build for shell-based program tests - meson_options.txt for provider feature options
Owner
|
Many thanks for this, and in particular for getting a non-autotools build system to work with gnulib. As you can see, I've reopened #58. I'm sorry that it will take me a while to review, partly because I'm quite busy at present, and partly because I want to consider carefully what to do here. Given the demand for an alternative to autotools, I am keen to accept this build system if possible; but at the same time, I'm reluctant to switch just one of my projects to something different (I use autotools in all my other C-based projects). The alternatives are:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add initial Meson build system configuration for Enchant, replacing the existing Autotools-based build with a modern, fast alternative.
Includes:
Fixes: #58