Browse Source

waf: use methods from bld instead of ardupilotwaf for the remaining

master
Gustavo Jose de Sousa 9 years ago committed by Lucas De Marchi
parent
commit
a2d2661765
  1. 5
      Tools/CPUInfo/wscript
  2. 5
      Tools/Replay/wscript
  3. 5
      libraries/AP_HAL_Linux/benchmarks/wscript
  4. 5
      libraries/AP_Math/benchmarks/wscript
  5. 5
      libraries/AP_Math/tests/wscript

5
Tools/CPUInfo/wscript

@ -1,11 +1,8 @@ @@ -1,11 +1,8 @@
#!/usr/bin/env python
# encoding: utf-8
import ardupilotwaf
def build(bld):
ardupilotwaf.ap_program(
bld,
bld.ap_program(
use='ap',
blddestdir='tools',
)

5
Tools/Replay/wscript

@ -1,11 +1,8 @@ @@ -1,11 +1,8 @@
#!/usr/bin/env python
# encoding: utf-8
import ardupilotwaf
def build(bld):
ardupilotwaf.ap_program(
bld,
bld.ap_program(
use='ap',
blddestdir='tools',
)

5
libraries/AP_HAL_Linux/benchmarks/wscript

@ -1,10 +1,7 @@ @@ -1,10 +1,7 @@
#!/usr/bin/env python
# encoding: utf-8
import ardupilotwaf
def build(bld):
ardupilotwaf.find_benchmarks(
bld,
bld.find_benchmarks(
use='ap',
)

5
libraries/AP_Math/benchmarks/wscript

@ -1,10 +1,7 @@ @@ -1,10 +1,7 @@
#!/usr/bin/env python
# encoding: utf-8
import ardupilotwaf
def build(bld):
ardupilotwaf.find_benchmarks(
bld,
bld.find_benchmarks(
use='ap',
)

5
libraries/AP_Math/tests/wscript

@ -1,10 +1,7 @@ @@ -1,10 +1,7 @@
#!/usr/bin/env python
# encoding: utf-8
import ardupilotwaf
def build(bld):
ardupilotwaf.find_tests(
bld,
bld.find_tests(
use='ap',
)

Loading…
Cancel
Save