Skip to content

Commit 0d189ff

Browse files
committed
Merge branch 'master' of github.com:qgis/Quantum-GIS
2 parents 5b49c9e + e690048 commit 0d189ff

File tree

101 files changed

+6970
-1998
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+6970
-1998
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ scripts/RelWithDebInfo
4343
/CMakeLists.txt.user
4444
qgis-test.ctest
4545
i18n/*.qm
46+
.project

CMakeLists.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,12 @@ ADD_CUSTOM_TARGET(version ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h)
559559
#############################################################
560560
# process subdirs
561561

562+
#create a variable to specify where our test data is
563+
#so that unit tests can use TEST_DATA_DIR to locate
564+
#the test data. See CMakeLists in test dirs for more info
565+
#TEST_DATA_DIR is also used by QgsRenderChecker currently in core
566+
SET (TEST_DATA_DIR "${CMAKE_CURRENT_SOURCE_DIR}/tests/testdata")
567+
562568
ADD_SUBDIRECTORY(src)
563569
ADD_SUBDIRECTORY(doc)
564570
ADD_SUBDIRECTORY(images)
@@ -570,10 +576,6 @@ IF (WITH_BINDINGS)
570576
ENDIF (WITH_BINDINGS)
571577

572578
IF (ENABLE_TESTS)
573-
#create a variable to specify where our test data is
574-
#so that unit tests can use TEST_DATA_DIR to locate
575-
#the test data. See CMakeLists in test dirs for more info
576-
SET (TEST_DATA_DIR "${CMAKE_CURRENT_SOURCE_DIR}/tests/testdata")
577579
ADD_SUBDIRECTORY(tests)
578580
SET (CTEST_BINARY_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/output/bin" )
579581
MESSAGE (STATUS "Ctest Binary Directory set to: ${CTEST_BINARY_DIRECTORY}")

doc/CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Mark Baas
3939
Markus Neteler
4040
Mathias Walker
4141
Matt Amos
42+
Matthias Kuhn
4243
Maurizio Napolitano
4344
Mayeul Kauffmann
4445
Milena Nowotarska

images/images.qrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,9 @@
462462
<file>flags/en_US.png</file>
463463
<file>flags/da_DK.png</file>
464464
<file>flags/et_EE.png</file>
465+
<file>themes/default/text.png</file>
466+
<file>themes/default/histogram.png</file>
467+
<file>themes/default/pie-chart.png</file>
465468
</qresource>
466469
<qresource prefix="/images/tips">
467470
<file alias="symbol_levels.png">qgis_tips/symbol_levels.png</file>
510 Bytes
Loading

0 commit comments

Comments
 (0)