aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/bigint/CMakeLists.txt
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/bigint/CMakeLists.txt
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/bigint/CMakeLists.txt')
-rw-r--r--vcpkg/ports/bigint/CMakeLists.txt42
1 files changed, 42 insertions, 0 deletions
diff --git a/vcpkg/ports/bigint/CMakeLists.txt b/vcpkg/ports/bigint/CMakeLists.txt
new file mode 100644
index 0000000..fffc941
--- /dev/null
+++ b/vcpkg/ports/bigint/CMakeLists.txt
@@ -0,0 +1,42 @@
+cmake_minimum_required(VERSION 3.14.0)
+project(bigint CXX)
+
+if(MSVC)
+ add_compile_options(/W3 /wd4005 /wd4996 /wd4018 -D_CRT_SECURE_NO_WARNINGS)
+endif()
+
+set(BIGINT_SRCS
+ BigUnsigned.cc
+ BigInteger.cc
+ BigIntegerAlgorithms.cc
+ BigUnsignedInABase.cc
+ BigIntegerUtils.cc
+)
+
+set(BIGINT_HH
+ NumberlikeArray.hh
+ BigUnsigned.hh
+ BigInteger.hh
+ BigIntegerAlgorithms.hh
+ BigUnsignedInABase.hh
+ BigIntegerLibrary.hh
+ BigIntegerUtils.hh
+)
+
+add_library(bigint ${BIGINT_SRCS})
+target_include_directories(bigint PUBLIC $<INSTALL_INTERFACE:include> $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
+
+install(
+ TARGETS bigint
+ EXPORT bigint-config
+)
+
+install(
+ EXPORT bigint-config
+ NAMESPACE bigint::
+ DESTINATION share/bigint
+)
+
+if(NOT DISABLE_INSTALL_HEADERS)
+ install(FILES ${BIGINT_HH} DESTINATION include/bigint)
+endif()