Page 1 of 1

Building both tiles and console

PostPosted: Tuesday, 17th April 2018, 14:38
by Fingolfin
Hi, I'd like to know if it was possible to build crawl from source simultaneously for tiles and console in a single command. The result would be two executables, console and tiles. I run linux and am currently just running "make TILES=y".

Re: Building both tiles and console

PostPosted: Wednesday, 18th April 2018, 02:24
by advil
Not exactly simultaneously, but you can do something like
  Code:
make && mv crawl crawl-console && make TILES=y && mv crawl crawl-tiles
.

Re: Building both tiles and console

PostPosted: Wednesday, 18th April 2018, 04:55
by VeryAngryFelid
I think simultaneous build is impossible because there are conditional directives in the code. Ifdef tiles and alike