Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
20 changed files
with
107 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
######################################################## | ||
# Files | ||
|
||
SET (IMAGE_RCCS images.qrc) | ||
|
||
######################################################## | ||
# Build | ||
|
||
QT4_ADD_RESOURCES(IMAGE_RCC_SRCS ${IMAGE_RCCS}) | ||
|
||
######################################################## | ||
# Continue on to subdirs | ||
SUBDIRS (north_arrows splash icons themes svg) | ||
######################################################## | ||
# Files | ||
|
||
SET (IMAGE_RCCS images.qrc) | ||
|
||
######################################################## | ||
# Build | ||
|
||
QT4_ADD_RESOURCES(IMAGE_RCC_SRCS ${IMAGE_RCCS}) | ||
|
||
######################################################## | ||
# Continue on to subdirs | ||
ADD_SUBDIRECTORY(north_arrows) | ||
ADD_SUBDIRECTORY(splash) | ||
ADD_SUBDIRECTORY(icons) | ||
ADD_SUBDIRECTORY(themes) | ||
ADD_SUBDIRECTORY(svg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
SUBDIRS (plugins) | ||
ADD_SUBDIRECTORY(plugins) | ||
|
||
FILE (GLOB IMAGES *.png) | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
SUBDIRS (coordinate_capture) | ||
ADD_SUBDIRECTORY(coordinate_capture) | ||
|
||
FILE (GLOB IMAGES *.png) | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
SUBDIRS(plugin_installer mapserver_export fTools GdalTools osm) | ||
ADD_SUBDIRECTORY(plugin_installer) | ||
ADD_SUBDIRECTORY(mapserver_export) | ||
ADD_SUBDIRECTORY(fTools) | ||
ADD_SUBDIRECTORY(GdalTools) | ||
ADD_SUBDIRECTORY(osm) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
|
||
INSTALL(FILES srs.db qgis.db qgis_help.db symbology-ng-style.xml spatialite.db customization.xml | ||
DESTINATION ${QGIS_DATA_DIR}/resources) | ||
|
||
SUBDIRS(context_help) | ||
ADD_SUBDIRECTORY(context_help) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,27 @@ | ||
SUBDIRS(core analysis ui gui app providers plugins helpviewer crssync browser) | ||
ADD_SUBDIRECTORY(core) | ||
ADD_SUBDIRECTORY(analysis) | ||
ADD_SUBDIRECTORY(ui) | ||
ADD_SUBDIRECTORY(gui) | ||
ADD_SUBDIRECTORY(app) | ||
ADD_SUBDIRECTORY(providers) | ||
ADD_SUBDIRECTORY(plugins) | ||
ADD_SUBDIRECTORY(helpviewer) | ||
ADD_SUBDIRECTORY(crssync) | ||
ADD_SUBDIRECTORY(browser) | ||
|
||
IF (WITH_BINDINGS) | ||
SUBDIRS(python) | ||
ADD_SUBDIRECTORY(python) | ||
ENDIF (WITH_BINDINGS) | ||
|
||
IF (WITH_MAPSERVER) | ||
SUBDIRS(mapserver) | ||
ADD_SUBDIRECTORY(mapserver) | ||
ENDIF (WITH_MAPSERVER) | ||
|
||
IF (WITH_ASTYLE) | ||
SUBDIRS(astyle) | ||
ADD_SUBDIRECTORY(astyle) | ||
ENDIF(WITH_ASTYLE) | ||
|
||
IF (APPLE) | ||
SUBDIRS(mac) | ||
ADD_SUBDIRECTORY(mac) | ||
ENDIF(APPLE) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
|
||
SUBDIRS(Contents) | ||
ADD_SUBDIRECTORY(Contents) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,38 @@ | ||
SUBDIRS (copyright_label | ||
delimited_text | ||
diagram_overlay | ||
interpolation | ||
north_arrow | ||
scale_bar | ||
oracle_raster | ||
raster_terrain_analysis | ||
coordinate_capture | ||
dxf2shp_converter | ||
evis | ||
point_displacement_renderer | ||
spatialquery | ||
sqlanywhere | ||
roadgraph | ||
) | ||
ADD_SUBDIRECTORY(copyright_label) | ||
ADD_SUBDIRECTORY(delimited_text) | ||
ADD_SUBDIRECTORY(diagram_overlay) | ||
ADD_SUBDIRECTORY(interpolation) | ||
ADD_SUBDIRECTORY(north_arrow) | ||
ADD_SUBDIRECTORY(scale_bar) | ||
ADD_SUBDIRECTORY(oracle_raster) | ||
ADD_SUBDIRECTORY(raster_terrain_analysis) | ||
ADD_SUBDIRECTORY(coordinate_capture) | ||
ADD_SUBDIRECTORY(dxf2shp_converter) | ||
ADD_SUBDIRECTORY(evis) | ||
ADD_SUBDIRECTORY(point_displacement_renderer) | ||
ADD_SUBDIRECTORY(spatialquery) | ||
ADD_SUBDIRECTORY(sqlanywhere) | ||
ADD_SUBDIRECTORY(roadgraph) | ||
|
||
IF (WITH_SPATIALITE) | ||
SUBDIRS( offline_editing ) | ||
ADD_SUBDIRECTORY(offline_editing) | ||
ENDIF (WITH_SPATIALITE) | ||
|
||
IF (POSTGRES_FOUND) | ||
SUBDIRS (spit) | ||
ADD_SUBDIRECTORY(spit) | ||
ENDIF (POSTGRES_FOUND) | ||
|
||
IF (EXPAT_FOUND) | ||
SUBDIRS (gps_importer wfs) | ||
ADD_SUBDIRECTORY(gps_importer) | ||
ADD_SUBDIRECTORY(wfs) | ||
ENDIF (EXPAT_FOUND) | ||
|
||
IF (GSL_FOUND) | ||
SUBDIRS (georeferencer) | ||
ADD_SUBDIRECTORY(georeferencer) | ||
ENDIF (GSL_FOUND) | ||
|
||
IF (GRASS_FOUND) | ||
SUBDIRS (grass) | ||
ADD_SUBDIRECTORY(grass) | ||
ENDIF (GRASS_FOUND) | ||
|
||
INSTALL(FILES qgisplugin.h qgsrendererplugin.h DESTINATION ${QGIS_INCLUDE_DIR}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
SUBDIRS(default classic gis) | ||
ADD_SUBDIRECTORY(default) | ||
ADD_SUBDIRECTORY(classic) | ||
ADD_SUBDIRECTORY(gis) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
|
||
SUBDIRS (memory ogr wms delimitedtext osm sqlanywhere gdal) | ||
ADD_SUBDIRECTORY(memory) | ||
ADD_SUBDIRECTORY(ogr) | ||
ADD_SUBDIRECTORY(wms) | ||
ADD_SUBDIRECTORY(delimitedtext) | ||
ADD_SUBDIRECTORY(osm) | ||
ADD_SUBDIRECTORY(sqlanywhere) | ||
ADD_SUBDIRECTORY(gdal) | ||
|
||
IF (POSTGRES_FOUND) | ||
SUBDIRS (postgres) | ||
ADD_SUBDIRECTORY(postgres) | ||
ENDIF (POSTGRES_FOUND) | ||
|
||
IF (SPATIALITE_FOUND OR WITH_INTERNAL_SPATIALITE) | ||
SUBDIRS (spatialite) | ||
ADD_SUBDIRECTORY(spatialite) | ||
ENDIF (SPATIALITE_FOUND OR WITH_INTERNAL_SPATIALITE) | ||
|
||
IF (EXPAT_FOUND) | ||
SUBDIRS (gpx wfs) | ||
ADD_SUBDIRECTORY(gpx) | ||
ADD_SUBDIRECTORY(wfs) | ||
ENDIF (EXPAT_FOUND) | ||
|
||
IF (GRASS_FOUND) | ||
SUBDIRS (grass) | ||
ADD_SUBDIRECTORY(grass) | ||
ENDIF (GRASS_FOUND) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
IF (ENABLE_TESTS) | ||
SUBDIRS(src) | ||
ENDIF (ENABLE_TESTS) | ||
IF (ENABLE_TESTS) | ||
ADD_SUBDIRECTORY(src) | ||
ENDIF (ENABLE_TESTS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
IF (ENABLE_TESTS) | ||
SUBDIRS(core) | ||
SUBDIRS(gui) | ||
SUBDIRS(analysis) | ||
ADD_SUBDIRECTORY(core) | ||
ADD_SUBDIRECTORY(gui) | ||
ADD_SUBDIRECTORY(analysis) | ||
ENDIF (ENABLE_TESTS) |