mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:39:00 +08:00
1d351e0846
* [bigint] Add missing header file. File BigIntegerUtils.hh, which is required by the library, was not being copied. * [bigint] Bump control file version
42 lines
699 B
CMake
42 lines
699 B
CMake
cmake_minimum_required(VERSION 3.8.0)
|
|
project(bigint)
|
|
|
|
if(MSVC)
|
|
add_compile_options(/W3 /wd4005 /wd4996 /wd4018 -D_CRT_SECURE_NO_WARNINGS)
|
|
endif()
|
|
|
|
include_directories(".")
|
|
|
|
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})
|
|
|
|
install(
|
|
TARGETS bigint
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|
|
|
|
if(NOT DISABLE_INSTALL_HEADERS)
|
|
install(FILES ${bigint_hh} DESTINATION include/bigint)
|
|
endif()
|