mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 19:28:59 +08:00
bb61fc1662
Co-authored-by: Robert Schumacher <roschuma@microsoft.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
50 lines
1.6 KiB
Diff
50 lines
1.6 KiB
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 54071bd..0edd0e9 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -44,6 +44,11 @@ if(WIN32)
|
|
set(CMAKE_DEBUG_POSTFIX -debug)
|
|
endif()
|
|
|
|
+# Bigint
|
|
+find_package(bigint CONFIG REQUIRED)
|
|
+
|
|
+link_libraries(bigint::bigint)
|
|
+
|
|
# OpenCV classes
|
|
if(WITH_OPENCV)
|
|
find_package(OpenCV REQUIRED)
|
|
diff --git a/source_files.cmake b/source_files.cmake
|
|
index db3d8d4..39abe82 100644
|
|
--- a/source_files.cmake
|
|
+++ b/source_files.cmake
|
|
@@ -1,28 +1,4 @@
|
|
set(LIBZXING_FILES
|
|
- core/src/bigint/BigInteger.cc
|
|
- core/src/bigint/BigInteger.cc
|
|
- core/src/bigint/BigInteger.hh
|
|
- core/src/bigint/BigInteger.hh
|
|
- core/src/bigint/BigIntegerAlgorithms.cc
|
|
- core/src/bigint/BigIntegerAlgorithms.cc
|
|
- core/src/bigint/BigIntegerAlgorithms.hh
|
|
- core/src/bigint/BigIntegerAlgorithms.hh
|
|
- core/src/bigint/BigIntegerLibrary.hh
|
|
- core/src/bigint/BigIntegerLibrary.hh
|
|
- core/src/bigint/BigIntegerUtils.cc
|
|
- core/src/bigint/BigIntegerUtils.cc
|
|
- core/src/bigint/BigIntegerUtils.hh
|
|
- core/src/bigint/BigIntegerUtils.hh
|
|
- core/src/bigint/BigUnsigned.cc
|
|
- core/src/bigint/BigUnsigned.cc
|
|
- core/src/bigint/BigUnsigned.hh
|
|
- core/src/bigint/BigUnsigned.hh
|
|
- core/src/bigint/BigUnsignedInABase.cc
|
|
- core/src/bigint/BigUnsignedInABase.cc
|
|
- core/src/bigint/BigUnsignedInABase.hh
|
|
- core/src/bigint/BigUnsignedInABase.hh
|
|
- core/src/bigint/NumberlikeArray.hh
|
|
- core/src/bigint/NumberlikeArray.hh
|
|
core/src/zxing/aztec/AztecDetectorResult.cpp
|
|
core/src/zxing/aztec/AztecDetectorResult.h
|
|
core/src/zxing/aztec/AztecReader.cpp
|