-
Notifications
You must be signed in to change notification settings - Fork 24
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
Improved CMake configuration #137
Conversation
Btw, @petervdonovan can you immediately see why the CI is not running on my PRs? |
No, I'm not sure why not. I think that sometimes one has to merge master into the branch in order to trigger CI. |
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.
This looks good to merge. Thanks for the cleanup!
OK. Just have to fix the CI. @lhstrh. There is something wrong with the CI see here: https://github.com/lf-lang/reactor-c/actions/runs/3864134424/workflow Do you understand anything of this? |
Oh, I get it now. Dongha just forgot to change from Actually, I'll just do that right now. |
Mainly changing how reactor-c corelib is built. Originally it used
add_subdirectory
to add platform, modal, threaded and utils sources. This is a bit hacky since it creates new node and compile definitions and sources can not easily be added to the parent node. Now I useinclude
instead. Needed some additional changes for this to work.