Changeset 876 for trunk/build-mingw
- Timestamp:
- Aug 29, 2011, 1:48:28 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build-mingw
r852 r876 3 3 ## Native MinGW compilation for Lol Engine -- Sam Hocevar <sam@hocevar.net> 4 4 5 # This can't hurt 6 make distclean 7 5 8 set -e 6 9 7 10 PATH="$PATH:./contrib/gtk-2.22.1/bin" 8 M4PATH="./contrib/gtk-2.22.1/share/aclocal" 11 12 M4PATH="$M4PATH:./contrib/gtk-2.22.1/share/aclocal" 13 M4PATH="$M4PATH:./contrib/cppunit-1.12.2/share/aclocal" 9 14 export M4PATH # This looks necessary 15 10 16 PKG_CONFIG_PATH="$PKG_CONFIG_PATH:`pwd`/contrib/gtkglarea-2.0.1/lib/pkgconfig" 17 PKG_CONFIG_PATH="$PKG_CONFIG_PATH:`pwd`/contrib/cppunit-1.12.2/lib/pkgconfig" 11 18 export PKG_CONFIG_PATH # This looks necessary, too 12 19 … … 30 37 CPPFLAGS="$CPPFLAGS -I`pwd`/contrib/gtkglarea-2.0.1/include" 31 38 39 # CppUnit include path 40 CPPFLAGS="$CPPFLAGS -I`pwd`/contrib/cppunit-1.12.2/include" 41 32 42 # SDL library path 33 43 LDFLAGS="$LDFLAGS -L`pwd`/contrib/sdl-1.2.14/lib" … … 42 52 LDFLAGS="$LDFLAGS -L`pwd`/contrib/gtk-2.22.1/bin" 43 53 LDFLAGS="$LDFLAGS -L`pwd`/contrib/gtkglarea-2.0.1/lib" 54 55 # CppUnit library path 56 LDFLAGS="$LDFLAGS -L`pwd`/contrib/cppunit-1.12.2/lib" 44 57 45 58 # Prevent issues with GTK+ internals
Note: See TracChangeset
for help on using the changeset viewer.