Replies: 1 comment 8 replies
-
You can use link_depends in some cases, but not for sources or arguments to the compiler (for example include paths). If you are interested in adding arguments to the compiler or the linker, you should instead read the file and split it by word or line instead. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Some C compiler allow user to pass a plain text file, such as
a.txt
:If we simply
When we update
a.txt
, thedemo
will not be rebuilt.If we
How can we do?
Beta Was this translation helpful? Give feedback.
All reactions