diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-12 18:56:40 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-05-12 20:01:04 +0200 |
commit | 36613b888bae7df764a26a28ca1627a2c0c2edeb (patch) | |
tree | ff681fd0b45bbf34d8adc58eca9fbb058ff337a4 /third-party/cmake/GperfCMakeLists.txt | |
parent | de5ccf2348a1fabf3867da9256e4740a7dfcf004 (diff) | |
download | rneovim-36613b888bae7df764a26a28ca1627a2c0c2edeb.tar.gz rneovim-36613b888bae7df764a26a28ca1627a2c0c2edeb.tar.bz2 rneovim-36613b888bae7df764a26a28ca1627a2c0c2edeb.zip |
refactor(eval): use Hashy McHashFace instead of gperf
this removes gperf as a build dependency
Diffstat (limited to 'third-party/cmake/GperfCMakeLists.txt')
-rw-r--r-- | third-party/cmake/GperfCMakeLists.txt | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/third-party/cmake/GperfCMakeLists.txt b/third-party/cmake/GperfCMakeLists.txt deleted file mode 100644 index 15ae305ba8..0000000000 --- a/third-party/cmake/GperfCMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -cmake_minimum_required(VERSION 2.8.12) -project(gperf LANGUAGES C CXX) - -add_executable(gperf - lib/getline.cc - lib/hash.cc - lib/getopt.c - lib/getopt1.c - src/version.cc - src/positions.cc - src/options.cc - src/keyword.cc - src/keyword-list.cc - src/input.cc - src/bool-array.cc - src/hash-table.cc - src/search.cc - src/output.cc - src/main.cc) - -include_directories(lib) - -# Copy the config.h template without modifying it -# because none of the definitions are necessary -execute_process(COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/src/config.h.in ${CMAKE_BINARY_DIR}/config/config.h) -include_directories(${CMAKE_BINARY_DIR}/config) - -include(GNUInstallDirs) -install(TARGETS gperf - RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) |