aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/RemoveFiles.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/RemoveFiles.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/RemoveFiles.cmake')
-rw-r--r--third-party/cmake/RemoveFiles.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/third-party/cmake/RemoveFiles.cmake b/third-party/cmake/RemoveFiles.cmake
new file mode 100644
index 0000000000..88e2bc70a6
--- /dev/null
+++ b/third-party/cmake/RemoveFiles.cmake
@@ -0,0 +1,5 @@
+file(GLOB_RECURSE FILES_TO_REMOVE ${REMOVE_FILE_GLOB})
+
+if(FILES_TO_REMOVE)
+ file(REMOVE ${FILES_TO_REMOVE})
+endif()