You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A common use case is to compile multiple versions of one file and include some additional files that don't change (eg., test harness). So we could provide an extra_source option to build(). So:
Something like:
build(["foo.cpp", "bar.cpp"])
to compile one executable from both files.This is in conflict with #4 , potentially.
A common use case is to compile multiple versions of one file and include some additional files that don't change (eg., test harness). So we could provide an
extra_source
option tobuild()
. So:build(["foo.cpp", "bar.cpp"], extra_source=["harness.cpp", "helper.cpp"])
Would build a version for
foo.cpp
and one forbar.cpp
.The text was updated successfully, but these errors were encountered: