mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
Fix the following build warning by defining BUILD_TYPE and matching
CMAKE_BUILD_TYPE to BUILD_TYPE. The build has been building as Release,
as the CMAKE_BUILD_TYPE does not override BUILD_TYPE.
*BUILD_TYPE not defined, default to: release
CMake Warning at Tools/bldsys/include/bs_base_utils.cmake:81 (message):
Inconsistent: BUILD_TYPE="release" vs CMAKE_BUILD_TYPE="MinSizeRel"
Call Stack (most recent call first):
Tools/bldsys/bs_init.cmake:35 (bs_check_build_type)
media_driver/CMakeLists.txt:69 (include)
...
-- media -- BUILD_TYPE/UFO_BUILD_TYPE/CMAKE_BUILD_TYPE = release/release/Release
The full eror will not disappear until a future PR to change the LE build from
CMAKE_BUILD_TYPE="MinSizeRel" to CMAKE_BUILD_TYPE="Release"