Skip to content

Commit

Permalink
Add PKGDATAPATH to cpp flags
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5797 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Sep 10, 2006
1 parent c090770 commit 4a32a93
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/mapserver_export/Makefile.am
Expand Up @@ -12,6 +12,11 @@

bin_PROGRAMS = msexport

if !HAVE_QTMAC
PREFIX=-DPREFIX=\"$(prefix)\"
PLUGINPATH=-DPLUGINPATH=\"$(pkglibdir)\"
PKGDATAPATH=-DPKGDATAPATH=\"$(pkgdatadir)\"
endif

%.moc.cpp: %.h
$(MOC) -o $@ $<
Expand Down Expand Up @@ -53,7 +58,7 @@ BUILT_SOURCES = $(msexport_MOC) $(msexport_UI)


msexport_LDADD = $(QT_LDADD) $(PYTHON_LIB)
msexport_CXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(PYTHON_INCLUDE_DIR) -I../../src
msexport_CXXFLAGS = $(CXXFLAGS) $(PKGDATAPATH) $(EXTRA_CXXFLAGS) $(QT_CXXFLAGS) $(PYTHON_INCLUDE_DIR) -I../../src

CLEANFILES = $(BUILT_SOURCES)

Expand Down

0 comments on commit 4a32a93

Please sign in to comment.