forked from Azure/azure-iot-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
39 lines (28 loc) · 1.02 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#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 remote_monitoring sample
compileAsC99()
if(NOT ${use_amqp})
message(FATAL_ERROR "remote_monitoring being generated without amqp support")
endif()
set(remote_monitoring_c_files
remote_monitoring.c
)
if(WIN32)
set(remote_monitoring_c_files ${remote_monitoring_c_files})
else()
set(remote_monitoring_c_files ${remote_monitoring_c_files})
endif()
set(remote_monitoring_h_files
remote_monitoring.h
)
IF(WIN32)
#windows needs this define
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
ENDIF(WIN32)
include_directories(. ${IOTHUB_CLIENT_INC_FOLDER})
link_directories(${whatIsBuilding}_dll ${SHARED_UTIL_LIB_DIR})
add_executable(remote_monitoring ${remote_monitoring_c_files} ${remote_monitoring_h_files})
target_link_libraries(remote_monitoring serializer iothub_client iothub_client_amqp_transport)
linkSharedUtil(remote_monitoring)
linkUAMQP(remote_monitoring)