|
Revision 3092
(checked in by juergbi, 1 year ago)
|
2007-12-08 Jürg Billeter <j@bitron.ch>
- bindings/Makefile.am:
- bindings/vala/:
- configure.ac:
- tests/Makefile.am:
- tests/vala-demo/Makefile.am:
- tests/vala-demo/tinymail-vala-test.vala:
Add experimental Vala bindings and test application, disabled by
default.
|
| Line | |
|---|
| 1 |
SUBDIRS = python-demo |
|---|
| 2 |
|
|---|
| 3 |
if BUILD_DEMOUI |
|---|
| 4 |
SUBDIRS += c-demo |
|---|
| 5 |
|
|---|
| 6 |
if BUILD_VALA_BINDINGS |
|---|
| 7 |
SUBDIRS += vala-demo |
|---|
| 8 |
endif |
|---|
| 9 |
endif |
|---|
| 10 |
|
|---|
| 11 |
#### Funny OR simulation :) |
|---|
| 12 |
if BUILD_TESTS |
|---|
| 13 |
if !BUILD_UNITTESTS |
|---|
| 14 |
SUBDIRS += shared |
|---|
| 15 |
endif |
|---|
| 16 |
endif |
|---|
| 17 |
|
|---|
| 18 |
if BUILD_UNITTESTS |
|---|
| 19 |
if !BUILD_TESTS |
|---|
| 20 |
SUBDIRS += shared |
|---|
| 21 |
endif |
|---|
| 22 |
endif |
|---|
| 23 |
|
|---|
| 24 |
if BUILD_UNITTESTS |
|---|
| 25 |
if BUILD_TESTS |
|---|
| 26 |
SUBDIRS += shared |
|---|
| 27 |
endif |
|---|
| 28 |
endif |
|---|
| 29 |
### |
|---|
| 30 |
|
|---|
| 31 |
if BUILD_TESTS |
|---|
| 32 |
SUBDIRS += memory functional |
|---|
| 33 |
endif |
|---|