diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-11-01 14:09:05 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-11-01 14:09:05 -0500 |
commit | a2b8d7cdbaa0c7490e712168ba4fb284a74f3640 (patch) | |
tree | 890c66eaead7703d394512d6f301c07640b561ee /contrib | |
parent | 2e4baa9ae475e1ea01c5e15a440933b4814f0637 (diff) | |
parent | 90909e9362dacb5ece17c7baaffe33b16d106ce7 (diff) | |
download | rneovim-a2b8d7cdbaa0c7490e712168ba4fb284a74f3640.tar.gz rneovim-a2b8d7cdbaa0c7490e712168ba4fb284a74f3640.tar.bz2 rneovim-a2b8d7cdbaa0c7490e712168ba4fb284a74f3640.zip |
Merge 'CMake: Prepare for releases.'
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/local.mk.example | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/contrib/local.mk.example b/contrib/local.mk.example index 4e7b01a39f..22aac4fda7 100644 --- a/contrib/local.mk.example +++ b/contrib/local.mk.example @@ -13,16 +13,19 @@ # Sets the build type; defaults to Debug. Valid values: # -# - Debug: Disables optimizations (-O0), enables debug information. +# - Debug: Disables optimizations (-O0), enables debug information and logging. # -# - RelWithDebInfo: Enables all optimizations that do not interfere with +# - Dev: Enables all optimizations that do not interfere with # debugging (-Og if available, -O2 and -g if not). -# Enables debug information. +# 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. +# Disables debug information and logging. # # - Release: Same as RelWithDebInfo, but disables debug information. # |