Skip to content

Conversation

@onrcn
Copy link

@onrcn onrcn commented Dec 22, 2025

The Meson parser in utils-bau.lua currently fails to detect executable targets if the target name contains a hyphen (e.g., my-app).

This PR updates the Lua patterns to include the hyphen character class.

Minimal Reproducible Example

project('test', 'c')

executable(
   'my-app',
   'main.c'
)
  • Result before fix: Target is not detected/listed.
  • Result after fix: my-app is correctly identified and available for selection.

Note:
I believe get_gradle_opts needs the same update, too.

- Updated the Meson parser regex to include the '-' (hyphen) class.
- This ensures targets like 'my-app' are correctly detected and captured
  by the BAU frontend.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant