You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							889 B
						
					
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							889 B
						
					
					
				Import('env', 'arch', 'common', 'cereal', 'messaging')
 | 
						|
if arch == "aarch64":
 | 
						|
  env.Program('_sensord', 'sensors_qcom.cc', LIBS=['hardware', common, cereal, messaging, 'capnp', 'zmq', 'kj'])
 | 
						|
  lenv = env.Clone()
 | 
						|
  lenv['LIBPATH'] += ['/system/vendor/lib64']
 | 
						|
  lenv.Program('_gpsd', ['gpsd.cc'], LIBS=['hardware', common, 'diag', 'time_genoff', cereal, messaging, 'capnp', 'zmq', 'kj'])
 | 
						|
else:
 | 
						|
  sensors = [
 | 
						|
    'sensors/file_sensor.cc',
 | 
						|
    'sensors/i2c_sensor.cc',
 | 
						|
    'sensors/light_sensor.cc',
 | 
						|
    'sensors/bmx055_accel.cc',
 | 
						|
    'sensors/bmx055_gyro.cc',
 | 
						|
    'sensors/bmx055_magn.cc',
 | 
						|
    'sensors/bmx055_temp.cc',
 | 
						|
    'sensors/lsm6ds3_accel.cc',
 | 
						|
    'sensors/lsm6ds3_gyro.cc',
 | 
						|
    'sensors/lsm6ds3_temp.cc',
 | 
						|
  ]
 | 
						|
  libs = [common, cereal, messaging, 'capnp', 'zmq', 'kj']
 | 
						|
  if arch == "larch64":
 | 
						|
    libs.append('i2c')
 | 
						|
  env.Program('_sensord', ['sensors_qcom2.cc'] + sensors, LIBS=libs)
 | 
						|
 |