diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-10 12:21:52 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-10 12:21:52 -0500 |
commit | 73b8c89518404ea3fbb376e98c1a60e868581ecd (patch) | |
tree | 2785441b3bf03f1d94b4af680878f0d8526858b4 /contrib | |
parent | 5999749e079079bb97236a833dc78a16d0c91eea (diff) | |
parent | 72d03cc961796266b7b29a1e3afce94e9770c91b (diff) | |
download | rneovim-73b8c89518404ea3fbb376e98c1a60e868581ecd.tar.gz rneovim-73b8c89518404ea3fbb376e98c1a60e868581ecd.tar.bz2 rneovim-73b8c89518404ea3fbb376e98c1a60e868581ecd.zip |
Merge pull request #2667 from equalsraf/tb-min-log
cmake: Pass MIN_LOG_LEVEL as compiler definition
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/local.mk.example | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/local.mk.example b/contrib/local.mk.example index 22aac4fda7..a0b2d034e1 100644 --- a/contrib/local.mk.example +++ b/contrib/local.mk.example @@ -31,6 +31,11 @@ # # CMAKE_BUILD_TYPE := Debug +# By default, nvim's log level is INFO (1) (unless CMAKE_BUILD_TYPE is +# "Release", in which case logging is disabled). +# The log level must be a number DEBUG (0), INFO (1), WARNING (2) or ERROR (3). +# CMAKE_EXTRA_FLAGS += -DMIN_LOG_LEVEL=1 + # By default, nvim uses bundled versions of its required third-party # dependencies. # Uncomment these entries to instead use system-wide installations of |