Changeset 16592 in osm


Ignore:
Timestamp:
2009-07-19T20:36:20+02:00 (15 years ago)
Author:
frederik
Message:

webkit-image makefile/linking order fixes by Hanno Boeck <hanno@…>

Location:
applications/editors/josm/plugins/wmsplugin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wmsplugin/Makefile

    r13262 r16592  
    33MOC=moc
    44#MOC=/usr/share/qt4/bin/moc
    5 CFLAGS  =
    6 LDFLAGS = `pkg-config --libs --cflags QtCore QtGui QtWebKit`
     5CFLAGS =
     6LDFLAGS =
     7LDLIBS = `pkg-config --libs --cflags QtCore QtGui QtWebKit`
    78
    89webkit-image: webkit-image.cpp webkit-image.h
    9         g++ -W -o $@ -O2 $(CFLAGS) $(LDFLAGS) webkit-image.cpp
     10        g++ -W -o $@ -O2 $(CFLAGS) $(LDFLAGS) webkit-image.cpp $(LDLIBS)
    1011
    1112webkit-image.h: webkit-image.cpp
  • applications/editors/josm/plugins/wmsplugin/webkit-image-gtk.c

    r14885 r16592  
    88
    99/* compile with:
    10 gcc `pkg-config --cflags --libs webkit-1.0` -o webkit-image-gtk webkit-image-gtk.c
     10gcc -o webkit-image-gtk webkit-image-gtk.c `pkg-config --cflags --libs webkit-1.0`
    1111*/
    1212
Note: See TracChangeset for help on using the changeset viewer.