Jeffrey
Jeffrey
Hi @lihaoyi something like this or I have to use scalatags and mainargs?
Alright, it's noted
```bash //build.mill package build import mill._, scalalib._, scalanativelib._ object `package` extends RootModule with ScalaNativeModule { def scalaVersion = "2.13.11" def scalaNativeVersion = "0.5.5" def nativeLinkingOptions = pathToWhereTheTargetWasSaved object test extends...
Good day @lihaoyi please you mind looking through `1-simple` and `2-interop` examples if it's in line with what you want cause they ran successfully with `mill run`? The issue i...
Could it be as a result of not returning `PathRef` in the `build.mill` after compiling the c code?
Okay... You mean for the `mainargs` double `::` Noted
You're so right!! Thank you for spotting the source of the test errors.☺️ Let me see if I can wrap up everything today or latest tomorrow On Wed, 9 Oct...
Okay. For this my draft PR, `1-simple` works using both `mill run` and `mill test` thanks to the `::` `2-interop` works only using `mill run`. `mill test` still has the...
Alright @lihaoyi I did the changes to the draft PR You can review `1-simple`, `2-interop` and `3-common-config` exapmles About `3-multi-module`, it seem to be the most complicated one in the...
> You can read things from other modules' folders by declaring them as `Task.Source`s in the upstream module; you should never write things in other module's folders, as all writes...