We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Google internal BUILD rules for OpenROAD support multiple values for platform;
platform
string_flag( name = "platform", build_setting_default = "cli", values = [ "cli", "headless", "native", ], )
Currently the headless and native where not exported due to complications around getting qt5 into the bazel build system. That should be fixed.
headless
native
qt5
The text was updated successfully, but these errors were encountered:
The repository at https://github.com/justbuchanan/bazel_rules_qt seems to have suitable bazel qt rules.
Sorry, something went wrong.
Being able to access the GUI with a command like the following is pretty useful;
# For interactive use with GUI functionality (glinux only) # blaze run --//third_party/open_road:platform=native //third_party/open_road:openroad -- -gui config_setting( name = "platform_native", flag_values = { ":platform": "native", }, )
No branches or pull requests
The Google internal BUILD rules for OpenROAD support multiple values for
platform
;Currently the
headless
andnative
where not exported due to complications around gettingqt5
into the bazel build system. That should be fixed.The text was updated successfully, but these errors were encountered: