Android: Add a CMAKE_BUILD_TYPE default

Android NDK builds are always `debug` or `release`.  We may populate
flags for these configurations that are needed to produce compatible
binaries.  Ensure they are used by default.
This commit is contained in:
Brad King 2016-06-08 13:48:19 -04:00
parent d1e3cec2aa
commit b6a3102a9f
1 changed files with 2 additions and 0 deletions

View File

@ -47,3 +47,5 @@ else()
"Android: No CMAKE_SYSROOT was selected."
)
endif()
set(CMAKE_BUILD_TYPE_INIT Debug)