Age | Commit message (Collapse) | Author |
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This reverts commit 4858b3fc5836dbf2f33fe0d1452bf0cb3a9f75b2.
|
|
This reverts commit 1db02c7bd8ffee2aa0a27264669d11f83d95b491.
|
|
|
|
|
|
Some formal function parameters are not used in all overloaded
functions, which results in loads of 4100 warnings when building
CREATE_PROJECT. This change silences warning 4100 together with
the others
|
|
DEVTOOLS: Create project fixes
|
|
CRYO: New engine
|
|
|
|
|