Sha256: c189c90d629dd8ca01477b4ed2758e79105a5bd4cc5ddeb5a0a32f2aa3ee24c7

Contents?: true

Size: 686 Bytes

Versions: 7

Compression:

Stored size: 686 Bytes

Contents

include(CMakeFindDependencyMacro)

find_dependency(aws-c-common)
find_dependency(aws-c-cal)
find_dependency(aws-c-io)
find_dependency(aws-c-http)
find_dependency(aws-c-sdkutils)

macro(aws_load_targets type)
    include(${CMAKE_CURRENT_LIST_DIR}/${type}/@PROJECT_NAME@-targets.cmake)
endmacro()

# try to load the lib follow BUILD_SHARED_LIBS. Fall back if not exist.
if (BUILD_SHARED_LIBS)
    if (EXISTS "${CMAKE_CURRENT_LIST_DIR}/shared")
        aws_load_targets(shared)
    else()
        aws_load_targets(static)
    endif()
else()
    if (EXISTS "${CMAKE_CURRENT_LIST_DIR}/static")
        aws_load_targets(static)
    else()
        aws_load_targets(shared)
    endif()
endif()

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
aws-crt-0.4.0 aws-crt-ffi/crt/aws-c-auth/cmake/aws-c-auth-config.cmake
aws-crt-0.3.0 aws-crt-ffi/crt/aws-c-auth/cmake/aws-c-auth-config.cmake
aws-crt-0.2.1 aws-crt-ffi/crt/aws-c-auth/cmake/aws-c-auth-config.cmake
aws-crt-0.2.0 aws-crt-ffi/crt/aws-c-auth/cmake/aws-c-auth-config.cmake
aws-crt-0.1.9 aws-crt-ffi/crt/aws-c-auth/cmake/aws-c-auth-config.cmake
aws-crt-0.1.8 aws-crt-ffi/crt/aws-c-auth/cmake/aws-c-auth-config.cmake
aws-crt-0.1.7 aws-crt-ffi/crt/aws-c-auth/cmake/aws-c-auth-config.cmake