Skip to content

Commit

Permalink
CMake variable for additional plugins to build (Usage: ccmake .. -DCU…
Browse files Browse the repository at this point in the history
…STOM_PLUGINS:STRING=myplugin)
  • Loading branch information
pka committed Oct 7, 2012
1 parent 277a4b4 commit b7a8998
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/plugins/CMakeLists.txt
Expand Up @@ -28,14 +28,17 @@ IF (GRASS_FOUND)
ADD_SUBDIRECTORY(grass) ADD_SUBDIRECTORY(grass)
ENDIF (GRASS_FOUND) ENDIF (GRASS_FOUND)


IF(EXPAT_FOUND) IF (EXPAT_FOUND)
ADD_SUBDIRECTORY(gps_importer) ADD_SUBDIRECTORY(gps_importer)
ENDIF(EXPAT_FOUND) ENDIF (EXPAT_FOUND)


IF (WITH_GLOBE) IF (WITH_GLOBE)
ADD_SUBDIRECTORY(globe) ADD_SUBDIRECTORY(globe)
ENDIF (WITH_GLOBE) ENDIF (WITH_GLOBE)


IF (CUSTOM_PLUGINS)
ADD_SUBDIRECTORY(${CUSTOM_PLUGINS})
ENDIF (CUSTOM_PLUGINS)


IF (QT_MOBILITY_SENSORS_FOUND) IF (QT_MOBILITY_SENSORS_FOUND)
ADD_SUBDIRECTORY(compass) ADD_SUBDIRECTORY(compass)
Expand Down

0 comments on commit b7a8998

Please sign in to comment.