aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-03-27 14:44:14 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-03-27 14:44:14 +0200
commit88124dfebc1a9c7eeb149beedd52a818058f9c16 (patch)
treeb49d47dd91a9dbed3d632d58545c582f41a9161d
parente20e9645b2c74b8cf6e1ba90961c08b079bbee3c (diff)
downloadrneovim-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.txt3
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(