• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#*******************************************************************************
2#  Copyright (c) 2017 IBM Corp.
3#
4#  All rights reserved. This program and the accompanying materials
5#  are made available under the terms of the Eclipse Public License v1.0
6#  and Eclipse Distribution License v1.0 which accompany this distribution.
7#
8#  The Eclipse Public License is available at
9#     http://www.eclipse.org/legal/epl-v10.html
10#  and the Eclipse Distribution License is available at
11#    http://www.eclipse.org/org/documents/edl-v10.php.
12#
13#  Contributors:
14#     Ian Craggs - initial version
15#*******************************************************************************/
16
17# Samples
18
19add_executable(
20  hello
21  hello.cpp
22)
23target_include_directories(hello PRIVATE "../../src" "../../src/linux")
24target_link_libraries(hello MQTTPacketClient)
25
26add_executable(
27  stdoutsub
28  stdoutsub.cpp
29)
30target_include_directories(stdoutsub PRIVATE "../../src" "../../src/linux")
31target_link_libraries(stdoutsub paho-embed-mqtt3c)
32