2017-09-03 23:50:17 +08:00
|
|
|
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
|
2018-04-26 09:27:26 +08:00
|
|
|
BigIntegerUtils.cc
|
2017-09-03 23:50:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
set(
|
|
|
|
bigint_hh
|
|
|
|
NumberlikeArray.hh
|
|
|
|
BigUnsigned.hh
|
|
|
|
BigInteger.hh
|
|
|
|
BigIntegerAlgorithms.hh
|
|
|
|
BigUnsignedInABase.hh
|
|
|
|
BigIntegerLibrary.hh
|
2018-04-26 09:27:26 +08:00
|
|
|
BigIntegerUtils.hh
|
2017-09-03 23:50:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
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()
|