win32: Add blurb at end of mingw helper script
authorRobert Bragg <robert@linux.intel.com>
Tue, 15 Mar 2011 22:19:08 +0000 (22:19 +0000)
committerRobert Bragg <robert@linux.intel.com>
Wed, 16 Mar 2011 11:23:38 +0000 (11:23 +0000)
This adds some blurb at the end the mingw-fetch-dependencies.sh script
that gives an example of how to go on and build clutter after fetching
all dependencies.

build/mingw/mingw-fetch-dependencies.sh

index 6129db4..e62be6b 100755 (executable)
@@ -361,3 +361,17 @@ for dep in "${SOURCES_DEPS[@]}"; do
     src="${src%%.tar.gz}";
     do_cross_compile "$src"
 done;
+
+echo
+echo "Done!"
+echo
+echo "You should now have everything you need to cross compile Clutter"
+echo
+echo "To get started, you should be able to configure and build from"
+echo "the top of your clutter source directory as follows:"
+echo
+echo "./configure --host=\"$TARGET\" --target=\"$TARGET\" --build=\"`./config.guess`\" --with-flavour=win32 CFLAGS=\"-mms-bitfields\" PKG_CONFIG_PATH=\"$ROOT_DIR/lib/pkgconfig\""
+echo "make"
+echo
+echo "Note: the explicit --build option is often necessary to ensure autoconf"
+echo "realizes you are cross-compiling."