From 789ac6f4ea1e8733abb04b61c9912ffc70d88676 Mon Sep 17 00:00:00 2001 From: timlinux Date: Sat, 7 Nov 2009 19:02:02 +0000 Subject: [PATCH] Fix compile error git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11970 c8812cc2-4d05-0410-92ff-de0c093fc19c --- python/plugins/mapserver_export/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python/plugins/mapserver_export/CMakeLists.txt b/python/plugins/mapserver_export/CMakeLists.txt index fbbe9d464645..51b3617a2953 100644 --- a/python/plugins/mapserver_export/CMakeLists.txt +++ b/python/plugins/mapserver_export/CMakeLists.txt @@ -9,5 +9,9 @@ ms_export.py resources.py ui_mapserverexport.py ) - +PYQT4_WRAP_UI(PYUI_FILES qgsmapserverexportbase.ui) + PYQT4_ADD_RESOURCES(PYRC_FILES resources.qrc) +ADD_CUSTOM_TARGET(mapserverexport ALL DEPENDS ${PYUI_FILES} ${PYRC_FILES}) + +SET(INSTALLER_FILES ${INSTALLER_FILES} ${PYUI_FILES} ${PYRC_FILES}) INSTALL(FILES ${INSTALLER_FILES} DESTINATION ${QGIS_DATA_DIR}/python/plugins/mapserver_export)