Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The actual building system for D

I know there are DSSS, BUD/build, Orbit by Jacob Carlborg and official rdmd. And only Orbit seems to be active. So, which of these is most usable to build huge, complex D programs with many dependencies? No packaging is needed, just nice and clear build process helper.

like image 702
Raxillan Avatar asked Mar 12 '12 16:03

Raxillan


People also ask

What is the building system?

In construction and architecture, building as a system means focusing on how all the components of a building interact. It includes everything from the exterior to the interior and even further afield to include connections to municipal sewer lines and electrical grids.

What are the 3 types of buildings?

Detached Buildings. Semi-Detached Buildings. Multi-Storey or High Rise Buildings.

What types of systems are in a building?

Examples of building systems include heating, ventilation, and air conditioning systems; plumbing, gas piping, fire protection, and sewer systems; and various electrical systems.

How many types of building are there?

Buildings can be categorized into five different types of construction: fire-resistive, non-combustible, ordinary, heavy timber, and wood-framed.


2 Answers

They are too, a template for use makefile here: MakefileForD

why use it:

  • easy to use
  • support all compiler
  • able to build both shared and static lib or executable
  • // build
like image 88
bioinfornatics Avatar answered Oct 04 '22 03:10

bioinfornatics


Not a finished product but....

DMD already has a -deps flag that should make auto-generating make files reasonably simple.

like image 40
BCS Avatar answered Oct 04 '22 03:10

BCS