diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-27 14:44:14 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-27 14:44:14 +0200 |
commit | 88124dfebc1a9c7eeb149beedd52a818058f9c16 (patch) | |
tree | b49d47dd91a9dbed3d632d58545c582f41a9161d | |
parent | e20e9645b2c74b8cf6e1ba90961c08b079bbee3c (diff) | |
download | rneovim-88124dfebc1a9c7eeb149beedd52a818058f9c16.tar.gz rneovim-88124dfebc1a9c7eeb149beedd52a818058f9c16.tar.bz2 rneovim-88124dfebc1a9c7eeb149beedd52a818058f9c16.zip |
build: Prefix check-single-includes artifacts.
The previous naming scheme could conflict with the test fixture
artifacts from `test/functional/fixtures/`, which also produce
`foo-test` artifacts.
-rw-r--r-- | src/nvim/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 877b403463..3ee4380538 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -435,6 +435,7 @@ set(NO_SINGLE_CHECK_HEADERS sha256 sign_defs spell + spellfile syntax syntax_defs tag @@ -462,7 +463,7 @@ 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 "${r}-test") + 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( |