mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-04 10:45:50 +00:00
* use tagged containers for pkg build * update build images * continue to build container images in pipeline, but allow failure (non-block) * limit travis macos cache * add vs2019 windows to travis * remove xcode 9 travis build * remove clang5/6 from CI and update min version of Clang required in cmake * break windows CI build into stages to reduce timeouts * update datelib * add if condition to travis builds to allow commit message to limit builds by platform
25 lines
485 B
CMake
25 lines
485 B
CMake
find_package (PkgConfig)
|
|
if (PKG_CONFIG_FOUND)
|
|
pkg_search_module (secp256k1_PC QUIET libsecp256k1)
|
|
endif ()
|
|
|
|
if(static)
|
|
set(SECP256K1_LIB libsecp256k1.a)
|
|
else()
|
|
set(SECP256K1_LIB secp256k1)
|
|
endif()
|
|
|
|
find_library(secp256k1
|
|
NAMES ${SECP256K1_LIB}
|
|
HINTS
|
|
${secp256k1_PC_LIBDIR}
|
|
${secp256k1_PC_LIBRARY_PATHS}
|
|
NO_DEFAULT_PATH)
|
|
|
|
find_path (SECP256K1_INCLUDE_DIR
|
|
NAMES secp256k1.h
|
|
HINTS
|
|
${secp256k1_PC_INCLUDEDIR}
|
|
${secp256k1_PC_INCLUDEDIRS}
|
|
NO_DEFAULT_PATH)
|