| author | Gary Kramlich <grim@reaperworld.com> |
| Sat Jun 26 15:25:18 2010 -0500 (23 months ago) | |
| changeset 388 | 301bcc8bdad0 |
| parent 383 | ef7bf1f0ee7d |
| permissions | -rw-r--r-- |
| grim@372 | 1 |
add_subdirectory(functions) |
| grim@388 | 2 |
add_subdirectory(tests) |
| grim@372 | 3 |
add_subdirectory(tags) |
| grim@372 | 4 |
add_subdirectory(variables) |
| grim@372 | 5 |
|
| grim@383 | 6 |
enable_testing() |
| grim@383 | 7 |
|
| grim@372 | 8 |
set(GPLATE_HEADERS |
| grim@372 | 9 |
gplate.h |
| grim@372 | 10 |
gplate-collection.h |
| grim@372 | 11 |
gplate-config.h |
| grim@372 | 12 |
gplate-errors.h |
| grim@372 | 13 |
gplate-function.h |
| grim@372 | 14 |
gplate-iterator.h |
| grim@372 | 15 |
gplate-library.h |
| grim@372 | 16 |
gplate-tag.h |
| grim@372 | 17 |
gplate-template.h |
| grim@372 | 18 |
gplate-util.h |
| grim@372 | 19 |
gplate-variable.h |
| grim@372 | 20 |
) |
| grim@372 | 21 |
|
| grim@372 | 22 |
add_library(gplate SHARED |
| grim@372 | 23 |
gplate-collection.c |
| grim@372 | 24 |
gplate-config.c |
| grim@372 | 25 |
gplate-errors.c |
| grim@372 | 26 |
gplate-function.c |
| grim@372 | 27 |
gplate-iterator.c |
| grim@372 | 28 |
gplate-library.c |
| grim@372 | 29 |
gplate-tag.c |
| grim@372 | 30 |
gplate-template.c |
| grim@372 | 31 |
gplate-util.c |
| grim@372 | 32 |
gplate-variable.c |
| grim@372 | 33 |
) |
| grim@372 | 34 |
|
| grim@372 | 35 |
target_link_libraries(gplate |
| grim@372 | 36 |
${GLIB_LIBRARIES} |
| grim@372 | 37 |
${GMODULE_LIBRARIES} |
| grim@372 | 38 |
gplate-functions |
| grim@372 | 39 |
gplate-tags |
| grim@372 | 40 |
gplate-variables |
| grim@372 | 41 |
) |
| grim@372 | 42 |