diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-29 18:44:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-29 18:44:43 +0200 |
commit | c35420558bed0bfa9938ecd1facec88f1df392a5 (patch) | |
tree | 0c5a27ab1e15948ffff4516b4af086a93d2eabaa /src | |
parent | 2846d508b24eb9f8ab59d21a060fd8130906392f (diff) | |
parent | afacda046d4cce07cb80ba2cf43341c03131c683 (diff) | |
download | rneovim-c35420558bed0bfa9938ecd1facec88f1df392a5.tar.gz rneovim-c35420558bed0bfa9938ecd1facec88f1df392a5.tar.bz2 rneovim-c35420558bed0bfa9938ecd1facec88f1df392a5.zip |
Merge #6394 'ci: check-single-includes only in "lint" build'
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index e752f5d4df..bad43e7f72 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -461,10 +461,8 @@ foreach(hfile ${NVIM_HEADERS}) if(NOT ${hfile} MATCHES "[.]c[.]h$") set(tsource "${GENERATED_DIR}/${r}.test-include.c") - set(tresult "${GENERATED_DIR}/${r}.test-include.i") string(REPLACE "/" "-" texe "test-incl-${r}") write_file("${tsource}" "#include \"${hfile}\"\nint main(int argc, char **argv) { return 0; }") - get_preproc_output(PREPROC_OUTPUT ${tresult}) add_executable( ${texe} EXCLUDE_FROM_ALL |