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:
Gustavo Jose de Sousa 2016-02-24 18:35:46 +00:00 committed by Lucas De Marchi
parent 03c067921e
commit 32402b93af

View File

@ -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