Skip to content

Commit 84c6909

Browse files
authored
Merge pull request DOCGroup#87 from jwillemsen/jwi-mqttzmq
New base projects for mqtt and zmq
2 parents 81bcbb2 + ef92dda commit 84c6909

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

config/mqttlib.mpb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
project {
2+
requires += mosquitto
3+
4+
libpaths += $(MQTT_ROOT)/lib
5+
includes += $(MQTT_ROOT)/include
6+
specific(prop:windows) {
7+
lit_libs += mosquitto$(MQTT_LIBVERSION)
8+
}
9+
specific(!prop:windows) {
10+
libs += mosquitto
11+
}
12+
}

config/zmqlib.mpb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
project {
2+
requires += zmq
3+
4+
libpaths += $(ZMQ_ROOT)/lib
5+
includes += $(ZMQ_ROOT)/include
6+
specific(prop:windows) {
7+
lit_libs += libzmq$(ZMQ_LIBVERSION)
8+
}
9+
specific(!prop:windows) {
10+
libs += zmq
11+
}
12+
}

0 commit comments

Comments
 (0)