1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 10:23:12 +03:00
vimr/local-dev.mk
2016-09-09 20:26:50 +02:00

26 lines
1.0 KiB
Makefile

DISABLE_TUI := DISABLE
ENABLE_CUSTOM_UI := ENABLE
# Sets the build type; defaults to Debug. Valid values:
#
# - Debug: Disables optimizations (-O0), enables debug information and logging.
#
# - Dev: Enables all optimizations that do not interfere with
# debugging (-Og if available, -O2 and -g if not).
# Enables debug information and logging.
#
# - RelWithDebInfo: Enables optimizations (-O2) and debug information.
# Disables logging.
#
# - MinSizeRel: Enables all -O2 optimization that do not typically
# increase code size, and performs further optimizations
# designed to reduce code size (-Os).
# Disables debug information and logging.
#
# - Release: Same as RelWithDebInfo, but disables debug information.
#CMAKE_BUILD_TYPE := Dev
CMAKE_BUILD_TYPE := Release
# The log level must be a number DEBUG (0), INFO (1), WARNING (2) or ERROR (3).
#CMAKE_EXTRA_FLAGS += -DMIN_LOG_LEVEL=0