diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-04-30 10:46:01 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-04-30 10:46:01 -0400 |
commit | b427dcdda286603a06ed29b45f1090894e92074a (patch) | |
tree | 734a0759fe9f1561a86f074396ec90d6f8011562 /third-party/cmake/InstallMsgpack.cmake | |
parent | 45b617afada9304cb265aad02645b22d76dfc2d5 (diff) | |
parent | 8130eb1191aece52d8b2790302abf1bd09aaf90f (diff) | |
download | rneovim-b427dcdda286603a06ed29b45f1090894e92074a.tar.gz rneovim-b427dcdda286603a06ed29b45f1090894e92074a.tar.bz2 rneovim-b427dcdda286603a06ed29b45f1090894e92074a.zip |
Merge pull request #2465 from fwalch/fix-jemalloc
Force je_ prefix for jemalloc functions, small CMake fixes.
Diffstat (limited to 'third-party/cmake/InstallMsgpack.cmake')
-rw-r--r-- | third-party/cmake/InstallMsgpack.cmake | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/third-party/cmake/InstallMsgpack.cmake b/third-party/cmake/InstallMsgpack.cmake deleted file mode 100644 index 406f299723..0000000000 --- a/third-party/cmake/InstallMsgpack.cmake +++ /dev/null @@ -1,12 +0,0 @@ -execute_process( - COMMAND ${CMAKE_COMMAND} --build . --target install - RESULT_VARIABLE res) - -if(NOT res EQUAL 0) - message(FATAL_ERROR "Installing msgpack failed.") -endif() - -file(GLOB_RECURSE FILES_TO_REMOVE ${REMOVE_FILE_GLOB}) -if(FILES_TO_REMOVE) - file(REMOVE ${FILES_TO_REMOVE}) -endif() |