Skip to content

Commit bd4fd28

Browse files
committed
fix SEXTANTE things broken by 6ca7ea9
1 parent 0b1ebaa commit bd4fd28

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

python/plugins/sextante/about/CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@ FILE(GLOB PY_FILES *.py)
33
FILE(GLOB UI_FILES *.ui)
44
PYQT4_WRAP_UI(PYUI_FILES ${UI_FILES})
55

6-
7-
86
PLUGIN_INSTALL(sextante ./about ${PY_FILES} ${PYUI_FILES})

python/plugins/sextante/ftools/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ FILE(GLOB PY_FILES *.py)
22
FILE(GLOB OTHER_FILES copyright.txt)
33
FILE(GLOB ICON_FILES icons/*.png)
44

5-
PLUGIN_INSTALL(sextante ./ftools ${PY_FILES} ${OTHER_FILES} ${ICON_FILES})
5+
PLUGIN_INSTALL(sextante ./ftools ${PY_FILES} ${OTHER_FILES})
6+
PLUGIN_INSTALL(sextante ./ftools/icons ${ICON_FILES})

python/plugins/sextante/gdal/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ FILE(GLOB ICON_FILES icons/*.png)
33

44
ADD_SUBDIRECTORY(scripts)
55

6-
PLUGIN_INSTALL(sextante ./gdal ${PY_FILES} ${ICON_FILES})
6+
PLUGIN_INSTALL(sextante ./gdal ${PY_FILES})
7+
PLUGIN_INSTALL(sextante ./gdal/icons ${ICON_FILES})

python/plugins/sextante/help/CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ FILE(GLOB OTHER_FILES *.js)
33
FILE(GLOB IMAGE_FILES _images/*.*)
44
FILE(GLOB STATIC_FILES _static/*.*)
55

6-
PLUGIN_INSTALL(sextante ./help ${HTML_FILES} ${OTHER_FILES} ${IMAGE_FILES} ${STATIC_FILES})
6+
PLUGIN_INSTALL(sextante ./help ${HTML_FILES} ${OTHER_FILES})
7+
PLUGIN_INSTALL(sextante ./help/images ${IMAGE_FILES})
8+
PLUGIN_INSTALL(sextante ./help/_static ${STATIC_FILES})

python/plugins/sextante/mmqgisx/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ FILE(GLOB PY_FILES *.py)
22
FILE(GLOB OTHER_FILES copyright.txt)
33
FILE(GLOB ICON_FILES icons/*.png)
44

5-
PLUGIN_INSTALL(sextante ./mmqgisx ${PY_FILES} ${OTHER_FILES} ${ICON_FILES})
5+
PLUGIN_INSTALL(sextante ./mmqgisx ${PY_FILES} ${OTHER_FILES})
6+
PLUGIN_INSTALL(sextante ./mmqgisx/icons ${ICON_FILES})

python/plugins/sextante/pymorph/html/morph/CMakeLists.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ FILE(GLOB MMINFO_FILES mminfo/*.*)
66
FILE(GLOB MMTYPES_FILES mmtype/*.*)
77
FILE(GLOB MORPH_FILES morph/*.*)
88

9-
PLUGIN_INSTALL(sextante ./pymorph/html/morph ${HTML_FILES} ${GIF_FILES} ${IMAGES_FILES} ${MMDEMOS_FILES} ${MMINFO_FILES} ${MMTYPES_FILES} ${MORPH_FILES})
9+
PLUGIN_INSTALL(sextante ./pymorph/html/morph ${HTML_FILES} ${GIF_FILES})
10+
PLUGIN_INSTALL(sextante ./pymorph/html/morph/images ${IMAGES_FILES})
11+
PLUGIN_INSTALL(sextante ./pymorph/html/morph/mmdemos ${MMDEMOS_FILES})
12+
PLUGIN_INSTALL(sextante ./pymorph/html/morph/mminfo ${MMINFO_FILES})
13+
PLUGIN_INSTALL(sextante ./pymorph/html/morph/mmtypes ${MMTYPES_FILES})
14+
PLUGIN_INSTALL(sextante ./pymorph/html/morph/morph ${MORPH_FILES})

0 commit comments

Comments
 (0)