grim/gplate

9b903d04907a
fixed the name space issues for the for function test
add_subdirectory(functions)
add_subdirectory(tests)
add_subdirectory(tags)
add_subdirectory(variables)
enable_testing()
set(GPLATE_HEADERS
gplate.h
gplate-collection.h
gplate-config.h
gplate-errors.h
gplate-function.h
gplate-iterator.h
gplate-library.h
gplate-tag.h
gplate-template.h
gplate-util.h
gplate-variable.h
)
add_library(gplate SHARED
gplate-collection.c
gplate-config.c
gplate-errors.c
gplate-function.c
gplate-iterator.c
gplate-library.c
gplate-tag.c
gplate-template.c
gplate-util.c
gplate-variable.c
)
target_link_libraries(gplate
${GLIB_LIBRARIES}
${GMODULE_LIBRARIES}
gplate-functions
gplate-tags
gplate-variables
)