|
Revision 14397, 1.2 kB
(checked in by aronb, 5 years ago)
|
Changing plugin build.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
Default: VRJuggler |
|---|
| 2 |
|
|---|
| 3 |
VPR |
|---|
| 4 |
{ |
|---|
| 5 |
external; // For Boost, CppDOM, etc. |
|---|
| 6 |
modules/vapor: VPR_CONFIG=vpr-config, VPR_BASE_DIR=instlinks; |
|---|
| 7 |
} |
|---|
| 8 |
|
|---|
| 9 |
Tweek |
|---|
| 10 |
{ |
|---|
| 11 |
depend VPR; |
|---|
| 12 |
modules/tweek: TWEEK_CONFIG=tweek-config, TWEEK_BASE_DIR=instlinks; |
|---|
| 13 |
} |
|---|
| 14 |
|
|---|
| 15 |
JCCL |
|---|
| 16 |
{ |
|---|
| 17 |
depend VPR; |
|---|
| 18 |
depend Tweek; |
|---|
| 19 |
modules/jackal: JCCL_CONFIG=jccl-config, JCCL_BASE_DIR=instlinks; |
|---|
| 20 |
} |
|---|
| 21 |
|
|---|
| 22 |
JCCLPlugIns |
|---|
| 23 |
{ |
|---|
| 24 |
depend JCCL; |
|---|
| 25 |
modules/jackal/plugins; |
|---|
| 26 |
} |
|---|
| 27 |
|
|---|
| 28 |
// Sonix comes after JCCL since Subsynth (an external dependency of Sonix) |
|---|
| 29 |
// depends on JCCL. This is a little weird ... |
|---|
| 30 |
Sonix |
|---|
| 31 |
{ |
|---|
| 32 |
depend VPR; |
|---|
| 33 |
depend JCCL; // Only indirectly |
|---|
| 34 |
external; // For GMTL |
|---|
| 35 |
modules/sonix: SNX_CONFIG=sonix-config, SNX_BASE_DIR=instlinks; |
|---|
| 36 |
} |
|---|
| 37 |
|
|---|
| 38 |
SonixPlugIns |
|---|
| 39 |
{ |
|---|
| 40 |
depend Sonix; |
|---|
| 41 |
modules/sonix/plugins; |
|---|
| 42 |
} |
|---|
| 43 |
|
|---|
| 44 |
Gadgeteer |
|---|
| 45 |
{ |
|---|
| 46 |
depend JCCL; |
|---|
| 47 |
external; // For GMTL |
|---|
| 48 |
modules/gadgeteer: GADGETEER_CONFIG=gadgeteer-config, GADGET_BASE_DIR=instlinks; |
|---|
| 49 |
} |
|---|
| 50 |
|
|---|
| 51 |
GadgeteerPlugins |
|---|
| 52 |
{ |
|---|
| 53 |
depend Gadgeteer; |
|---|
| 54 |
modules/gadgeteer/plugins; |
|---|
| 55 |
} |
|---|
| 56 |
|
|---|
| 57 |
GadgeteerDrivers |
|---|
| 58 |
{ |
|---|
| 59 |
depend Gadgeteer; |
|---|
| 60 |
modules/gadgeteer/drivers; |
|---|
| 61 |
} |
|---|
| 62 |
|
|---|
| 63 |
VRJuggler |
|---|
| 64 |
{ |
|---|
| 65 |
depend JCCLPlugIns; |
|---|
| 66 |
depend Sonix; |
|---|
| 67 |
depend SonixPlugIns; |
|---|
| 68 |
depend Gadgeteer; |
|---|
| 69 |
depend GadgeteerPlugins; |
|---|
| 70 |
depend GadgeteerDrivers; |
|---|
| 71 |
modules/vrjuggler: VRJ_CONFIG=vrjuggler-config, VJ_BASE_DIR=instlinks; |
|---|
| 72 |
} |
|---|