-
-
Notifications
You must be signed in to change notification settings - Fork 40
When to use every option
Zeioth edited this page Jul 24, 2023
·
16 revisions
In this section I describe in which situation you should use every option of the compiler.
Build and run program
, Build program
and Run program
are meant to be used when you are just testing the compiler, or creating your own project.
Build solution
Is meant to be used when you have many programs under your working directory, and want to compile them all and (optionally) run one of them. It is also meant to be used when you are working with an already existing project that do not respect the conventions for entry_point
and output
directories.
Use it when the basic usage or a solution don't cover your case of use. You can use this option to call any building system or external command you want. Learn more about how to use a Makefile here.