The README says to set MODE=Release or MODE=Debug in build.properties to change the build type. That property doesn't exist anywhere in the build system.
The actual property is src_build_type (e.g. src_build_type = Release), which feeds into -DCMAKE_BUILD_TYPE=${src_build_type} in the Ant build. Anyone following the README to change the build type sets a property that's never read and wonders why nothing changes.
The README says to set
MODE=ReleaseorMODE=Debuginbuild.propertiesto change the build type. That property doesn't exist anywhere in the build system.The actual property is
src_build_type(e.g.src_build_type = Release), which feeds into-DCMAKE_BUILD_TYPE=${src_build_type}in the Ant build. Anyone following the README to change the build type sets a property that's never read and wonders why nothing changes.