diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-01-09 10:37:49 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-01-09 11:37:49 +0100 |
commit | a8ad6b4d51eb5cb8a610753b6c7ade3cce3db9cc (patch) | |
tree | 1b8e2d964b7e39eeeba4f373d832c5e948441bab | |
parent | 59888b68ab68d974da36a0fae8edce6725ba2167 (diff) | |
download | rneovim-a8ad6b4d51eb5cb8a610753b6c7ade3cce3db9cc.tar.gz rneovim-a8ad6b4d51eb5cb8a610753b6c7ade3cce3db9cc.tar.bz2 rneovim-a8ad6b4d51eb5cb8a610753b6c7ade3cce3db9cc.zip |
cmake: install *.lua files
-rw-r--r-- | runtime/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 52a8609fec..d992c2cc77 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -138,7 +138,7 @@ endforeach() file(GLOB_RECURSE RUNTIME_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} rgb.txt - *.vim *.dict *.py *.rb *.ps *.tutor *.tutor.json) + *.vim *.lua *.dict *.py *.rb *.ps *.tutor *.tutor.json) foreach(F ${RUNTIME_FILES}) get_filename_component(BASEDIR ${F} PATH) |