aboutsummaryrefslogtreecommitdiff
path: root/ports/rapidstring/fix-cmake-install.patch
diff options
context:
space:
mode:
authorPhoebe <20694052+PhoebeHui@users.noreply.github.com>2019-12-06 11:46:43 +0800
committerGriffin Downs <35574547+grdowns@users.noreply.github.com>2019-12-05 19:46:43 -0800
commit3f11755f2a295517874cfc367b3c9088f4d29d07 (patch)
treed7b3c7c0c3b0cd05577cf7efeffdfa29b8e0a061 /ports/rapidstring/fix-cmake-install.patch
parente4653aec8f67634969c712820de5f7e53ea74fac (diff)
downloadvcpkg-3f11755f2a295517874cfc367b3c9088f4d29d07.tar.gz
vcpkg-3f11755f2a295517874cfc367b3c9088f4d29d07.zip
Remove rapidstring port (#9143)
Diffstat (limited to 'ports/rapidstring/fix-cmake-install.patch')
-rw-r--r--ports/rapidstring/fix-cmake-install.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/ports/rapidstring/fix-cmake-install.patch b/ports/rapidstring/fix-cmake-install.patch
deleted file mode 100644
index 624a71d2b..000000000
--- a/ports/rapidstring/fix-cmake-install.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 8543256..8ebce9c 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1,15 +1,26 @@
- cmake_minimum_required(VERSION 3.8 FATAL_ERROR)
- project(rapidstring LANGUAGES C VERSION 0.1.0)
- add_library(rapidstring INTERFACE)
--target_include_directories(rapidstring INTERFACE include)
-+target_include_directories(rapidstring INTERFACE
-+ $<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
-+ $<INSTALL_INTERFACE:include>)
-
- include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/utility.cmake)
-
- # TODO: Installation.
-+install(FILES include/rapidstring.h DESTINATION include)
-+
-+install(TARGETS rapidstring EXPORT rapidstringConfig)
-+
-+install(EXPORT rapidstringConfig
-+ FILE unofficial-rapidstringConfig.cmake
-+ NAMESPACE unofficial::rapidstring::
-+ DESTINATION share/cmake/rapidstring
-+ PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
-
- if(BUILD_TESTING)
- enable_testing()
- endif()
-
--add_subdirectory(test)
--add_subdirectory(benchmark)
-+#add_subdirectory(test)
-+#add_subdirectory(benchmark)