SConscript 339 B

12345678910111213
  1. import rtconfig
  2. Import('RTT_ROOT')
  3. from building import *
  4. # get current directory
  5. cwd = GetCurrentDir()
  6. # The set of source files associated with this SConscript file.
  7. src = Glob('MQTTPacket/src/*.c')
  8. path = [cwd + '/MQTTPacket/src']
  9. group = DefineGroup('paho-mqtt', src, depend = ['RT_USING_PAHOMQTT'], CPPPATH = path)
  10. Return('group')