Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
For some reason I cannot figure out how to enforce proper variable creation
in a generic way. I'll keep reading the docs but maybe someone else could
figure it out earlier
|
|
|
|
|
|
leads to confusion.
|
|
|
|
|
|
Thanks go to Joe Winzer for his work
|
|
|
|
This adds a quick fix so that any if blocks nested inside a if block
with an unmet condition are handled with push(false) even if their
condition is satisfied.
For example, without this modification, upon running create_project.exe
--msvc --disable-cloud --enable-libcurl the block inside
ifdef USE_CLOUD
ifdef USE_LIBCURL
...
endif
endif
in backends/module.mk would get evaluated since it was inside
USE_LIBCURL (=1), leading to unpredictable results.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CRYO: Move all static engine data into cryo.dat
|
|
|
|
|
|
Though it's unlikely that we'll ever have that many changes, it's
better to provision for more space now, for versioning
|
|
|
|
|
|
|
|
|
|
|
|
|