diff options
author | Doug Richardson <doug@rekt.email> | 2020-04-13 15:41:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 00:41:45 +0200 |
commit | bf58c0007161040dbb5319a91b2b63f7e0b74524 (patch) | |
tree | 8b5f1ab1e073193a6cf7062ffa3e7ec1387352d4 | |
parent | b3a66faf66f3e835b3d699a105d2cca2de5f151f (diff) | |
download | rneovim-bf58c0007161040dbb5319a91b2b63f7e0b74524.tar.gz rneovim-bf58c0007161040dbb5319a91b2b63f7e0b74524.tar.bz2 rneovim-bf58c0007161040dbb5319a91b2b63f7e0b74524.zip |
Use libnvim as OUTPUT_NAME for libnvim (#12119)
libnvim's OUTPUT_NAME was nvim, which caused the cmake Ninja generator
to generate two build rules for the library, which produced a warning
about incorrect builds.
-rw-r--r-- | src/nvim/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 2bfa193a63..33ca33a244 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -573,7 +573,6 @@ set_target_properties( libnvim PROPERTIES POSITION_INDEPENDENT_CODE ON - OUTPUT_NAME nvim ) set_property( TARGET libnvim |