waf: ardupilotwaf: remove SITL from common libraries
Only SITL port uses it and using it for PX4 raises compilation errors.
This commit is contained in:
parent
03c067921e
commit
32402b93af
@ -48,7 +48,6 @@ COMMON_VEHICLE_DEPENDENT_LIBRARIES = [
|
||||
'Filter',
|
||||
'GCS_MAVLink',
|
||||
'RC_Channel',
|
||||
'SITL',
|
||||
'StorageManager',
|
||||
]
|
||||
|
||||
@ -73,6 +72,8 @@ def ap_get_all_libraries(bld):
|
||||
continue
|
||||
if name.startswith('AP_HAL'):
|
||||
continue
|
||||
if name == 'SITL':
|
||||
continue
|
||||
libraries.append(name)
|
||||
libraries.extend(['AP_HAL', 'AP_HAL_Empty'])
|
||||
return libraries
|
||||
|
Loading…
Reference in New Issue
Block a user