vcpkg/ports/bigint/CMakeLists.txt

43 lines
810 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.14.0)
project(bigint CXX)
2017-09-03 23:50:17 +08:00
if(MSVC)
add_compile_options(/W3 /wd4005 /wd4996 /wd4018 -D_CRT_SECURE_NO_WARNINGS)
2017-09-03 23:50:17 +08:00
endif()
set(BIGINT_SRCS
2017-09-03 23:50:17 +08:00
BigUnsigned.cc
BigInteger.cc
BigIntegerAlgorithms.cc
BigUnsignedInABase.cc
BigIntegerUtils.cc
2017-09-03 23:50:17 +08:00
)
set(BIGINT_HH
2017-09-03 23:50:17 +08:00
NumberlikeArray.hh
BigUnsigned.hh
BigInteger.hh
BigIntegerAlgorithms.hh
BigUnsignedInABase.hh
BigIntegerLibrary.hh
BigIntegerUtils.hh
2017-09-03 23:50:17 +08:00
)
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
)
2017-09-03 23:50:17 +08:00
install(
EXPORT bigint-config
NAMESPACE bigint::
DESTINATION share/bigint
2017-09-03 23:50:17 +08:00
)
if(NOT DISABLE_INSTALL_HEADERS)
install(FILES ${BIGINT_HH} DESTINATION include/bigint)
2017-09-03 23:50:17 +08:00
endif()