aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2022-08-03 07:54:53 -0700
committerGitHub <noreply@github.com>2022-08-03 07:54:53 -0700
commit43cd91a4f4276da2b9cb231032ca63e47e7f32a2 (patch)
tree0ddd48ed309e44fcca0e340ff00dbf406a2bdeff /cmake
parent0a29267514c57c438d68a3d5599bfada41363b24 (diff)
parentd3bfc03c5d88466d2644cfaddcce48805b10ebca (diff)
downloadrneovim-43cd91a4f4276da2b9cb231032ca63e47e7f32a2.tar.gz
rneovim-43cd91a4f4276da2b9cb231032ca63e47e7f32a2.tar.bz2
rneovim-43cd91a4f4276da2b9cb231032ca63e47e7f32a2.zip
Merge #19626 build: cleanup old cmake files
Diffstat (limited to 'cmake')
-rw-r--r--cmake/InstallClintErrors.cmake2
-rw-r--r--cmake/InstallHelpers.cmake2
-rw-r--r--cmake/i386-linux-gnu.toolchain.cmake7
3 files changed, 1 insertions, 10 deletions
diff --git a/cmake/InstallClintErrors.cmake b/cmake/InstallClintErrors.cmake
deleted file mode 100644
index bd5ca07828..0000000000
--- a/cmake/InstallClintErrors.cmake
+++ /dev/null
@@ -1,2 +0,0 @@
-file(GLOB_RECURSE JSON_FILES *.json)
-file(COPY ${JSON_FILES} DESTINATION "${TARGET}")
diff --git a/cmake/InstallHelpers.cmake b/cmake/InstallHelpers.cmake
index 9d997260cd..3786c4177f 100644
--- a/cmake/InstallHelpers.cmake
+++ b/cmake/InstallHelpers.cmake
@@ -45,7 +45,7 @@ function(create_install_dir_with_perms)
while(NOT EXISTS \$ENV{DESTDIR}\${_current_dir} AND NOT \${_prev_dir} STREQUAL \${_current_dir})
list(APPEND _parent_dirs \${_current_dir})
set(_prev_dir \${_current_dir})
- get_filename_component(_current_dir \${_current_dir} PATH)
+ get_filename_component(_current_dir \${_current_dir} DIRECTORY)
endwhile()
if(_parent_dirs)
diff --git a/cmake/i386-linux-gnu.toolchain.cmake b/cmake/i386-linux-gnu.toolchain.cmake
deleted file mode 100644
index 089e37e5e8..0000000000
--- a/cmake/i386-linux-gnu.toolchain.cmake
+++ /dev/null
@@ -1,7 +0,0 @@
-set(CMAKE_SYSTEM_PROCESSOR i386)
-set(CMAKE_SYSTEM_NAME Linux)
-set(CMAKE_SYSTEM_VERSION gnu)
-if(NOT ${CMAKE_C_COMPILER})
- set(CMAKE_C_COMPILER gcc)
-endif()
-set(CMAKE_C_COMPILER_ARG1 "-m32")