diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-04-05 16:09:47 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-04-05 16:09:47 +0000 |
| commit | c06a23da79529cbb574940982e194e2b37d4c5f3 (patch) | |
| tree | af95152c782966fd8d8025b0bb0044a3f31dd536 /tools | |
| parent | b012671acbab7c88d68e1dfb173c9f4fb2b8714c (diff) | |
| download | rockbox-c06a23da79529cbb574940982e194e2b37d4c5f3.zip rockbox-c06a23da79529cbb574940982e194e2b37d4c5f3.tar.gz rockbox-c06a23da79529cbb574940982e194e2b37d4c5f3.tar.bz2 rockbox-c06a23da79529cbb574940982e194e2b37d4c5f3.tar.xz | |
Add T for plugins to the advanced build options to build all test_* plugins.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25488 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 1dd94ee..82f9cfb 100755 --- a/tools/configure +++ b/tools/configure @@ -362,7 +362,7 @@ whichadvanced () { interact=1 echo "" echo "Enter your developer options (press enter when done)" - printf "(D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (W)in32 crosscompile" + printf "(D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (W)in32 crosscompile, (T)est plugins" if [ "$memory" = "2" ]; then printf ", (8)MB MOD" fi @@ -403,6 +403,10 @@ whichadvanced () { echo "logf() support enabled" logf="yes" ;; + [Tt]) + echo "Including test plugins" + extradefines="$extradefines -DHAVE_TEST_PLUGINS" + ;; [Cc]) echo "bootchart enabled (logf also enabled)" bootchart="yes" |