Sha256: 9702c4ea205e43bfb075777d79f0c16ad12dbfb210dc4acf204c6967599ea898

Contents?: true

Size: 894 Bytes

Versions: 8

Compression:

Stored size: 894 Bytes

Contents

project(sha256_profile C)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_INSTALL_PREFIX}/lib/cmake")

file(GLOB PROFILE_SRC
        "*.c"
        )

set(PROFILE_PROJECT_NAME sha256_profile)
add_executable(${PROFILE_PROJECT_NAME} ${PROFILE_SRC})
aws_set_common_properties(${PROFILE_PROJECT_NAME})


target_include_directories(${PROFILE_PROJECT_NAME} PUBLIC
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
        $<INSTALL_INTERFACE:include>)

target_link_libraries(${PROFILE_PROJECT_NAME} aws-c-cal)

if (BUILD_SHARED_LIBS AND NOT WIN32)
    message(INFO " sha256_profile will be built with shared libs, but you may need to set LD_LIBRARY_PATH=${CMAKE_INSTALL_PREFIX}/lib to run the application")
endif()

install(TARGETS ${PROFILE_PROJECT_NAME}
        EXPORT ${PROFILE_PROJECT_NAME}-targets
        COMPONENT Runtime
        RUNTIME
        DESTINATION bin
        COMPONENT Runtime)

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
aws-crt-0.1.8 aws-crt-ffi/crt/aws-c-cal/bin/sha256_profile/CMakeLists.txt
aws-crt-0.1.7 aws-crt-ffi/crt/aws-c-cal/bin/sha256_profile/CMakeLists.txt
aws-crt-0.1.6 aws-crt-ffi/crt/aws-c-cal/bin/sha256_profile/CMakeLists.txt
aws-crt-0.1.5 aws-crt-ffi/crt/aws-c-cal/bin/sha256_profile/CMakeLists.txt
aws-crt-0.1.4 aws-crt-ffi/crt/aws-c-cal/bin/sha256_profile/CMakeLists.txt
aws-crt-0.1.2 aws-crt-ffi/crt/aws-c-cal/bin/sha256_profile/CMakeLists.txt
aws-crt-0.1.1.pre native/crt/aws-c-cal/bin/sha256_profile/CMakeLists.txt
aws-crt-0.1.0.pre native/crt/aws-c-cal/bin/sha256_profile/CMakeLists.txt