#Copyright (c) Microsoft. All rights reserved.
#Licensed under the MIT license. See LICENSE file in the project root for full license information.

#this is CMakeLists.txt for simplesample_http sample

if(NOT ${use_http})
    message(FATAL_ERROR "simplesample_http being generated without HTTP support")
endif()

compileAsC99()

set(simplesample_http_c_files
simplesample_http.c
)

if(WIN32)
    set(simplesample_http_c_files ${simplesample_http_c_files} ./windows/main.c)
else()
    set(simplesample_http_c_files ${simplesample_http_c_files} ./linux/main.c)
endif()


set(simplesample_http_h_files
    simplesample_http.h
)

IF(WIN32)
    #windows needs this define
    add_definitions(-D_CRT_SECURE_NO_WARNINGS)
ENDIF(WIN32)

#Conditionally use the SDK trusted certs in the samples
if(${use_sample_trusted_cert})
    add_definitions(-DSET_TRUSTED_CERT_IN_SAMPLES)
    include_directories(${PROJECT_SOURCE_DIR}/certs)
    set(simplesample_http_c_files ${simplesample_http_c_files} ${PROJECT_SOURCE_DIR}/certs/certs.c)
endif()

include_directories(. ${SHARED_UTIL_INC_FOLDER} ${IOTHUB_CLIENT_INC_FOLDER})

add_executable(simplesample_http ${simplesample_http_c_files} ${simplesample_http_h_files})

target_link_libraries(simplesample_http
    serializer
    iothub_client
    iothub_client_http_transport
)

linkSharedUtil(simplesample_http)
linkHttp(simplesample_http)