-
Notifications
You must be signed in to change notification settings - Fork 12
Fix deprecated Meson setup command warning in README #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@alex19EP 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs. I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review. |
Co-authored-by: alex19EP <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the build instructions in the README to use modern Meson syntax, replacing the deprecated meson command with meson setup to eliminate deprecation warnings in Meson 1.3.2+.
- Updates build command from
meson . ./buildtomeson setup . ./build
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do only 1 commit
|
@copilot please make only 1 commit. |
Updates the README.md to use the modern Meson syntax
meson setupinstead of the deprecatedmesoncommand.The current README instructs users to run:
meson . ./buildThis generates a deprecation warning in Meson 1.3.2+:
The fix updates the command to:
meson setup . ./buildThis change eliminates the warning while maintaining identical functionality. The modern syntax has been the preferred approach since Meson 0.47.0 and prevents potential issues when this deprecated syntax becomes an error in future Meson versions.
Fixes #58.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.