aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/InstallMsgpack.cmake
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-04-30 10:46:01 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-04-30 10:46:01 -0400
commitb427dcdda286603a06ed29b45f1090894e92074a (patch)
tree734a0759fe9f1561a86f074396ec90d6f8011562 /third-party/cmake/InstallMsgpack.cmake
parent45b617afada9304cb265aad02645b22d76dfc2d5 (diff)
parent8130eb1191aece52d8b2790302abf1bd09aaf90f (diff)
downloadrneovim-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.cmake12
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()