Changeset 876 for trunk/build-mingw


Ignore:
Timestamp:
Aug 29, 2011, 1:48:28 PM (12 years ago)
Author:
sam
Message:

contrib: add a precompiled Win32 version of CppUnit and update build system
accordingly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build-mingw

    r852 r876  
    33##  Native MinGW compilation for Lol Engine -- Sam Hocevar <sam@hocevar.net>
    44
     5# This can't hurt
     6make distclean
     7
    58set -e
    69
    710PATH="$PATH:./contrib/gtk-2.22.1/bin"
    8 M4PATH="./contrib/gtk-2.22.1/share/aclocal"
     11
     12M4PATH="$M4PATH:./contrib/gtk-2.22.1/share/aclocal"
     13M4PATH="$M4PATH:./contrib/cppunit-1.12.2/share/aclocal"
    914export M4PATH # This looks necessary
     15
    1016PKG_CONFIG_PATH="$PKG_CONFIG_PATH:`pwd`/contrib/gtkglarea-2.0.1/lib/pkgconfig"
     17PKG_CONFIG_PATH="$PKG_CONFIG_PATH:`pwd`/contrib/cppunit-1.12.2/lib/pkgconfig"
    1118export PKG_CONFIG_PATH # This looks necessary, too
    1219
     
    3037CPPFLAGS="$CPPFLAGS -I`pwd`/contrib/gtkglarea-2.0.1/include"
    3138
     39# CppUnit include path
     40CPPFLAGS="$CPPFLAGS -I`pwd`/contrib/cppunit-1.12.2/include"
     41
    3242# SDL library path
    3343LDFLAGS="$LDFLAGS -L`pwd`/contrib/sdl-1.2.14/lib"
     
    4252LDFLAGS="$LDFLAGS -L`pwd`/contrib/gtk-2.22.1/bin"
    4353LDFLAGS="$LDFLAGS -L`pwd`/contrib/gtkglarea-2.0.1/lib"
     54
     55# CppUnit library path
     56LDFLAGS="$LDFLAGS -L`pwd`/contrib/cppunit-1.12.2/lib"
    4457
    4558# Prevent issues with GTK+ internals
Note: See TracChangeset for help on using the changeset viewer.