Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
3rdparty
paho.mqtt.c
test
python
setup.py
Go to the documentation of this file.
1
from
distutils.core
import
setup, Extension
2
3
paho_mqtt3c = Extension(
'paho_mqtt3c'
,
4
define_macros = [(
'NO_HEAP_TRACKING'
,
'1'
)],
5
sources = [
'mqttclient_module.c'
,
'../../src/LinkedList.c'
],
6
libraries = [
'paho-mqtt3c'
],
7
library_dirs = [
'../../build/output'
],
8
include_dirs = [
'../../src'
])
9
10
paho_mqtt3a = Extension(
'paho_mqtt3a'
,
11
define_macros = [(
'NO_HEAP_TRACKING'
,
'1'
)],
12
sources = [
'mqttasync_module.c'
,
'../../src/LinkedList.c'
],
13
libraries = [
'paho-mqtt3a'
],
14
library_dirs = [
'../../build/output'
],
15
include_dirs = [
'../../src'
])
16
17
setup (name =
'EclipsePahoMQTTClient'
,
18
version =
'1.0'
,
19
description =
'Binding to the Eclipse Paho C clients'
,
20
ext_modules = [paho_mqtt3c, paho_mqtt3a])
plotjuggler
Author(s): Davide Faconti
autogenerated on Sun Dec 6 2020 03:48:11