aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/hash-library/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/hash-library/CMakeLists.txt')
-rw-r--r--vcpkg/ports/hash-library/CMakeLists.txt48
1 files changed, 48 insertions, 0 deletions
diff --git a/vcpkg/ports/hash-library/CMakeLists.txt b/vcpkg/ports/hash-library/CMakeLists.txt
new file mode 100644
index 0000000..abc69f1
--- /dev/null
+++ b/vcpkg/ports/hash-library/CMakeLists.txt
@@ -0,0 +1,48 @@
+cmake_minimum_required(VERSION 3.5.1)
+project(hash-library CXX)
+
+set(HEADERS
+ crc32.h
+ hash.h
+ hmac.h
+ keccak.h
+ md5.h
+ sha1.h
+ sha256.h
+ sha3.h
+)
+
+set(SRCS
+ crc32.cpp
+ keccak.cpp
+ md5.cpp
+ sha1.cpp
+ sha256.cpp
+ sha3.cpp
+)
+
+add_library(hash-library ${SRCS})
+
+target_include_directories(hash-library PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<INSTALL_INTERFACE:include/hash-library>)
+
+if(NOT DISABLE_INSTALL_HEADERS)
+ install(FILES ${HEADERS} DESTINATION include/hash-library)
+endif()
+
+install(
+ TARGETS hash-library
+ EXPORT unofficial-hash-library-targets
+ RUNTIME DESTINATION bin
+ LIBRARY DESTINATION lib
+ ARCHIVE DESTINATION lib
+)
+
+install(
+ EXPORT unofficial-hash-library-targets
+ FILE unofficial-hash-library-targets.cmake
+ NAMESPACE unofficial::
+ DESTINATION share/unofficial-hash-library
+)
+
+file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/unofficial-hash-library-config.cmake" "include(\${CMAKE_CURRENT_LIST_DIR}/unofficial-hash-library-targets.cmake)\n")
+install(FILES "${CMAKE_CURRENT_BINARY_DIR}/unofficial-hash-library-config.cmake" DESTINATION share/unofficial-hash-library)