-
Notifications
You must be signed in to change notification settings - Fork 60
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
Error when blt_add_code_checks calls blt_add_yapf_target #624
Comments
I see two solutions:
I would lean towards the second option. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Having this issue in LiDO where when I call
blt_add_code_checks
I get the following error:The
SRC_FILES
variable is set to_py_sources
(retrieved fromblt_split_source_list_by_language
, see https://github.com/LLNL/blt/blob/develop/cmake/SetupCodeChecks.cmake#L156).I guess when
blt_split_source_list_by_language
is called,Python_LIST
is empty, which means_py_sources
is empty, which meansSRC_FILES
is""
when it gets down toblt_add_yapf_target
.When I commented out the fatal error I was able to make by LiDO build without issues. Maybe this check is not required?
The text was updated successfully, but these errors were encountered: