Sha256: 3d85b087dccf46996b2d1c2dff1f33e4ed1d861e44e52688ab9bc1ef1307b674

Contents?: true

Size: 484 Bytes

Versions: 4

Compression:

Stored size: 484 Bytes

Contents

project(print-sys-info C)

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

file(GLOB SI_SRC
        "*.c"
        )

set(SI_PROJECT_NAME print-sys-info)
add_executable(${SI_PROJECT_NAME} ${SI_SRC})
aws_set_common_properties(${SI_PROJECT_NAME})


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

target_link_libraries(${SI_PROJECT_NAME} PRIVATE aws-c-common)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aws-crt-0.4.0 aws-crt-ffi/crt/aws-c-common/bin/system_info/CMakeLists.txt
aws-crt-0.3.0 aws-crt-ffi/crt/aws-c-common/bin/system_info/CMakeLists.txt
aws-crt-0.2.1 aws-crt-ffi/crt/aws-c-common/bin/system_info/CMakeLists.txt
aws-crt-0.2.0 aws-crt-ffi/crt/aws-c-common/bin/system_info/CMakeLists.txt