Now, if I have two Chapel projects ProjA
and ProjB
.
If I want to use ProjA
in B
, I include the -M/path/to/ProjA
flag in my makefile. In c++ however, the paradigm is often to include whole libraries, like boost
, that are install system-wide. What is the analog to this in Chapel. Is there a chpl --compile-as-system-library
flag or something?