#!/bin/env python # import sys Import('env') env = env.Copy() env.Append( CPPPATH = [ "include", ".", "../lib/qpxtransport/include", "../lib/qpxpioneer/include" ], LIBS = [ 'qpxtransport', 'qpxpioneer' ], LIBPATH = [ "../lib/lib" ] ) if sys.platform.startswith('freebsd'): env.Append(LIBS = 'cam') pxcontrol = env.Program('../bin/pioquiet', [ 'pioquiet.cpp', ] )