Skip to content

Commit

Permalink
Updates for Qt4
Browse files Browse the repository at this point in the history
Removed spurious GPS image (why was it here?)
Replaced all qt3 widgets with qt4 ones


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@4486 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jan 6, 2006
1 parent d3fb750 commit 6f352b2
Show file tree
Hide file tree
Showing 6 changed files with 300 additions and 11,625 deletions.
12 changes: 10 additions & 2 deletions plugins/grid_maker/Makefile.am
Expand Up @@ -28,6 +28,9 @@ bin_PROGRAMS = gridmaker
ui_%.h: %.ui
$(UIC) -o $@ $<

%.qrc.cpp: %.qrc
$(RCC) -o $@ $<

##
## For plugin lib
##
Expand All @@ -41,7 +44,9 @@ gridmakerplugin_la_SOURCES = plugin.cpp \
shapefile.h \
plugingui.cpp \
$(plugin_UI)\
$(plugin_MOC)
$(plugin_MOC)\
$(plugin_QRC) \
$(plugin_RES)


plugin_MOC = plugin.moc.cpp \
Expand All @@ -51,8 +56,11 @@ plugin_UI = ui_pluginguibase.h

plugin_UIC = pluginguibase.ui

plugin_RES = gridmaker_plugin.qrc.cpp

plugin_QRC = gridmaker_plugin.qrc

BUILT_SOURCES = $(plugin_MOC) $(plugin_UI)
BUILT_SOURCES = $(plugin_MOC) $(plugin_UI) $(plugin_RES)

gridmakerplugin_la_LIBADD = $(QT_LDADD) $(GDAL_LDADD) ../../src/libqgis.la
gridmakerplugin_la_CFLAGS = $(CFLAGS) $(EXTRA_CFLAGS) $(DEBUG_QGIS)
Expand Down

0 comments on commit 6f352b2

Please sign in to comment.