vcpkg/ports/bigint/CMakeLists.txt
ras0219 bb61fc1662
[blaze][ceres][clapack][geogram][lapack][lapack-reference][opencv4][selene] Fix deps issues (#13229)
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-09-04 18:59:21 -07:00

43 lines
810 B
CMake

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()