2055f6ba91
These are the VS 2008/2010 project files to build Cogl, with a README.txt to explain the process involved. Note that the Cogl and Cogl-Pango projects (and filters for VS2010) are expanded with the correct source file listings during "make dist", which is done to simplify maintenance of these project files. -added preconfigured config.h(.win32.in), which is expanded with the correct versioining info during autogen -added preconfigued cogl/cogl-defines.h.win32 -added symbols files for cogl and cogl-pango -Have configure.ac expand the config.h.win32.in into config.h.win32 with the correct versioning info, etc, and to include the Visual C++ project files for distribution -Added rules in cogl/Makefile.am to expand the cogl VS 2008/2010 projects and filters from the templates with up-to-date source file listings, to distribute cogl-enum-types.c, cogl-enum-types.h to ease compilation and to avoid depending on PERL on Windows installations. -Added rules in cogl-pango/Makefile.am to expand the cogl-pango VS2008/ 2010 projects and filters from the templates with up-to-date source file listings. -Added/edited various Makefile.am's in build to distribute the VS2008/2010 project files and associated items required for the build. -Update .gitignore. There needs to be a pre-configured config.h(.win32) and its template, config.h.win32.in for Visual C++ builds https://bugzilla.gnome.org/show_bug.cgi?id=650020 Reviewed-by: Neil Roberts <neil@linux.intel.com>
32 lines
572 B
Makefile
32 lines
572 B
Makefile
SUBDIRS = cogl tests
|
|
|
|
if BUILD_COGL_PANGO
|
|
SUBDIRS += cogl-pango
|
|
endif
|
|
|
|
SUBDIRS += examples doc po build
|
|
|
|
ACLOCAL_AMFLAGS = -I build/autotools ${ACLOCAL_FLAGS}
|
|
|
|
EXTRA_DIST = \
|
|
README.in \
|
|
config-custom.h \
|
|
config.h.win32 \
|
|
config.h.win32.in
|
|
|
|
# .changelog expects these to be initializes
|
|
CLEANFILES=
|
|
DISTCLEANFILES=
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--enable-gtk-doc \
|
|
--enable-maintainer-flags \
|
|
--enable-profile \
|
|
--enable-gles1 \
|
|
--enable-gles2 \
|
|
--enable-gl \
|
|
--enable-xlib-egl-platform \
|
|
--enable-glx
|
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.release
|