Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
General include cleanup
This unifies the way the include directories are handled in the CMakeLists.txt files. Paths are now normally relative to the root of the source- or build dir. They may still be relative for paths withing a plugin subdirectory but should no longer be relative to paths outside of the current source- or build-directory. The previous approach had resultet in many different styles which are hard to wrap ones head around if new to the build system. It sometimes defined includes twice By using relative paths, it was not possible to copy paste the paths between different files.
- Loading branch information
Showing
with
374 additions
and 325 deletions.
- +31 −32 python/CMakeLists.txt
- +39 −40 src/app/CMakeLists.txt
- +3 −3 src/core/composer/qgscomposermapitem.h
- +1 −0 src/core/qgssqlexpressioncompiler.cpp
- +3 −1 src/core/qgssqlexpressioncompiler.h
- +10 −9 src/plugins/coordinate_capture/CMakeLists.txt
- +10 −8 src/plugins/evis/CMakeLists.txt
- +10 −7 src/plugins/geometry_checker/CMakeLists.txt
- +14 −5 src/plugins/georeferencer/CMakeLists.txt
- +10 −9 src/plugins/gps_importer/CMakeLists.txt
- +11 −9 src/plugins/offline_editing/CMakeLists.txt
- +10 −8 src/plugins/spatialquery/CMakeLists.txt
- +10 −5 src/plugins/topology/CMakeLists.txt
- +14 −10 src/providers/arcgisrest/CMakeLists.txt
- +10 −9 src/providers/db2/CMakeLists.txt
- +7 −7 src/providers/delimitedtext/CMakeLists.txt
- +8 −8 src/providers/gdal/CMakeLists.txt
- +7 −8 src/providers/mssql/CMakeLists.txt
- +1 −1 src/providers/mssql/qgsmssqlexpressioncompiler.cpp
- +1 −1 src/providers/mssql/qgsmssqlexpressioncompiler.h
- +3 −2 src/providers/ogr/qgsogrexpressioncompiler.cpp
- +4 −2 src/providers/ogr/qgsogrexpressioncompiler.h
- +7 −9 src/providers/oracle/CMakeLists.txt
- +14 −14 src/providers/oracle/qgsoracleexpressioncompiler.cpp
- +1 −1 src/providers/oracle/qgsoracleexpressioncompiler.h
- +9 −7 src/providers/ows/CMakeLists.txt
- +10 −12 src/providers/postgres/CMakeLists.txt
- +4 −4 src/providers/postgres/qgspostgresexpressioncompiler.cpp
- +1 −1 src/providers/postgres/qgspostgresexpressioncompiler.h
- +7 −5 src/providers/spatialite/CMakeLists.txt
- +12 −13 src/providers/virtual/CMakeLists.txt
- +11 −10 src/providers/wcs/CMakeLists.txt
- +10 −8 src/providers/wfs/CMakeLists.txt
- +10 −9 src/providers/wms/CMakeLists.txt
- +7 −5 src/python/CMakeLists.txt
- +8 −6 tests/bench/CMakeLists.txt
- +2 −0 tests/src/analysis/CMakeLists.txt
- +24 −21 tests/src/app/CMakeLists.txt
- +19 −16 tests/src/gui/CMakeLists.txt
- +1 −0 tests/src/providers/CMakeLists.txt
Oops, something went wrong.