aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Fuga <fuga@studiofuga.com>2018-12-12 21:46:59 +0100
committerRobert Schumacher <roschuma@microsoft.com>2018-12-12 12:46:59 -0800
commit4347bc7e456670ff8d39eb92bf80ce645209b8d5 (patch)
tree566d3d842ce6608f30af5bb38294b02d1df1d8e9
parenta60120cbad46361f359836a79eb7c682c825894d (diff)
downloadvcpkg-4347bc7e456670ff8d39eb92bf80ce645209b8d5.tar.gz
vcpkg-4347bc7e456670ff8d39eb92bf80ce645209b8d5.zip
Port of sparsepp added (#4938)
-rw-r--r--ports/sparsepp/CMakeLists.txt18
-rw-r--r--ports/sparsepp/CONTROL3
-rw-r--r--ports/sparsepp/portfile.cmake32
3 files changed, 53 insertions, 0 deletions
diff --git a/ports/sparsepp/CMakeLists.txt b/ports/sparsepp/CMakeLists.txt
new file mode 100644
index 000000000..36d304ce5
--- /dev/null
+++ b/ports/sparsepp/CMakeLists.txt
@@ -0,0 +1,18 @@
+cmake_minimum_required (VERSION 3.9)
+project (sparsepp)
+
+set(HEADERS
+ sparsepp/spp.h
+ sparsepp/spp_config.h
+ sparsepp/spp_dlalloc.h
+ sparsepp/spp_memory.h
+ sparsepp/spp_smartptr.h
+ sparsepp/spp_stdint.h
+ sparsepp/spp_timer.h
+ sparsepp/spp_traits.h
+ sparsepp/spp_utils.h
+ )
+
+if(NOT DISABLE_INSTALL_HEADERS)
+ install(FILES ${HEADERS} DESTINATION include/sparsepp)
+endif()
diff --git a/ports/sparsepp/CONTROL b/ports/sparsepp/CONTROL
new file mode 100644
index 000000000..6606595e8
--- /dev/null
+++ b/ports/sparsepp/CONTROL
@@ -0,0 +1,3 @@
+Source: sparsepp
+Version: 1.22
+Description: A fast, memory efficient hash map for C++
diff --git a/ports/sparsepp/portfile.cmake b/ports/sparsepp/portfile.cmake
new file mode 100644
index 000000000..01822ea16
--- /dev/null
+++ b/ports/sparsepp/portfile.cmake
@@ -0,0 +1,32 @@
+
+include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO greg7mdp/sparsepp
+ REF 1.22
+ SHA512 b660cd7de48fcab50d4a0df4e4813226b0b0a8a3791aba4e4cc6a456af7bba0be6694bc44781a7d00b5582b32b1d85b9afa83095b7e5c0a26d1b0344ddc94b0f
+ HEAD_REF master
+)
+
+file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
+
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS
+ -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON
+)
+
+# Note: we could add: OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=ON
+# but it's an header only package, so there's no INSTALL target. So
+# we remove the duplicate headers.
+
+vcpkg_install_cmake()
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
+
+vcpkg_copy_pdbs()
+
+file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/sparsepp RENAME copyright)