diff --git a/Gui/Base/CMakeLists.txt b/Gui/Base/CMakeLists.txt
index af1ca87ef2a211bc84a4dbd836a4a4750ae9ff8a..36023d4d24996e200e3459e6178e2ff41bf01a62 100644
--- a/Gui/Base/CMakeLists.txt
+++ b/Gui/Base/CMakeLists.txt
@@ -55,3 +55,5 @@ add_library( QtBase STATIC
 )
 
 target_link_libraries( QtBase ${QT_LIBRARIES} )
+
+set_property(TARGET QtBase PROPERTY FOLDER "DataExplorer")
\ No newline at end of file
diff --git a/Gui/DataExplorer.cmake b/Gui/DataExplorer.cmake
index 72d0b2601898265866b75840fc93ad918ee7ef16..2a79c966ddc3425dade068d17b596101a7ef3ea9 100644
--- a/Gui/DataExplorer.cmake
+++ b/Gui/DataExplorer.cmake
@@ -128,6 +128,8 @@ IF(OGS_USE_VRPN)
 	TARGET_LINK_LIBRARIES( ogs-gui ${VRPN_LIBRARIES} OgsVrpn )
 ENDIF()
 
+set_property(TARGET ogs-gui PROPERTY FOLDER "DataExplorer")
+
 ###################
 ### VRED plugin ###
 ###################
diff --git a/Gui/DataView/CMakeLists.txt b/Gui/DataView/CMakeLists.txt
index 9aca5be01fd215ca1c06cb54495bf228cc295def..1ecd5e2d0b95828ff8875872cb0db09887b04a43 100644
--- a/Gui/DataView/CMakeLists.txt
+++ b/Gui/DataView/CMakeLists.txt
@@ -186,3 +186,5 @@ ENDIF () # Shapelib_FOUND
 IF (libgeotiff_FOUND)
 	TARGET_LINK_LIBRARIES( QtDataView ${libgeotiff_LIBRARIES} )
 ENDIF () # libgeotiff_FOUND
+
+set_property(TARGET QtDataView PROPERTY FOLDER "DataExplorer")
diff --git a/Gui/DataView/DiagramView/CMakeLists.txt b/Gui/DataView/DiagramView/CMakeLists.txt
index 727f83a4373512b91faccc12f454948e296e3f11..839433bff9d28b2644164f2a4db43ac15e443647 100644
--- a/Gui/DataView/DiagramView/CMakeLists.txt
+++ b/Gui/DataView/DiagramView/CMakeLists.txt
@@ -69,3 +69,5 @@ target_link_libraries( DiagramView
 	${QT_LIBRARIES}
 	GeoLib
 )
+
+set_property(TARGET DiagramView PROPERTY FOLDER "DataExplorer")
diff --git a/Gui/DataView/StratView/CMakeLists.txt b/Gui/DataView/StratView/CMakeLists.txt
index b69319b85f958b8e5150222a4576858c0a1c6788..6ee9a5fff884b9a36bf88bc973be74cacca5cdf8 100644
--- a/Gui/DataView/StratView/CMakeLists.txt
+++ b/Gui/DataView/StratView/CMakeLists.txt
@@ -43,8 +43,6 @@ include_directories(
 # Put moc files in a project folder
 source_group("Moc Files" REGULAR_EXPRESSION moc_*)
 
-
-
 # Create the library
 #add_executable( StratView
 add_library( StratView STATIC
@@ -61,3 +59,5 @@ target_link_libraries( StratView
 	BaseLib
 	GeoLib
 )
+
+set_property(TARGET StratView PROPERTY FOLDER "DataExplorer")
diff --git a/Gui/OpenSG/CMakeLists.txt b/Gui/OpenSG/CMakeLists.txt
index c3b338644e6185b7eaf613e87cb026e8d1616a3b..c0bccd811f4fb7871a6a8ac613dffe210bcc62c8 100644
--- a/Gui/OpenSG/CMakeLists.txt
+++ b/Gui/OpenSG/CMakeLists.txt
@@ -22,4 +22,6 @@ ADD_LIBRARY( OgsOpenSG STATIC
 	${HEADERS}
 )
 
-USE_OPENSG(OgsOpenSG)
\ No newline at end of file
+USE_OPENSG(OgsOpenSG)
+
+set_property(TARGET OgsOpenSG PROPERTY FOLDER "DataExplorer")
\ No newline at end of file
diff --git a/Gui/Vrpn/CMakeLists.txt b/Gui/Vrpn/CMakeLists.txt
index 7828b4e62bc25b625c515e99b1e2317a87a0f4da..6a24ced8c0d4377846bcb0db6281b901bb1a1df1 100644
--- a/Gui/Vrpn/CMakeLists.txt
+++ b/Gui/Vrpn/CMakeLists.txt
@@ -60,3 +60,5 @@ ADD_LIBRARY( OgsVrpn STATIC
 #TARGET_LINK_LIBRARIES( OgsVrpn
 #	${QT_LIBRARIES}
 #)
+
+SET_PROPERTY(TARGET OgsVrpn PROPERTY FOLDER "DataExplorer")
\ No newline at end of file
diff --git a/Gui/VtkAct/CMakeLists.txt b/Gui/VtkAct/CMakeLists.txt
index 70c0b11b42751548ce60303ba766be3b765eff8f..6351e970150869d5bef1bde022eb841355f80d09 100644
--- a/Gui/VtkAct/CMakeLists.txt
+++ b/Gui/VtkAct/CMakeLists.txt
@@ -52,3 +52,5 @@ add_library( VtkAct STATIC
 )
 
 target_link_libraries( VtkAct ${QT_LIBRARIES} )
+
+set_property(TARGET VtkAct PROPERTY FOLDER "DataExplorer")
\ No newline at end of file
diff --git a/Gui/VtkVis/CMakeLists.txt b/Gui/VtkVis/CMakeLists.txt
index c4a811311511acc0aed3534037a097a807b2a36e..1e94ce27c6b47bded7a3709ad0aaacba20c039f3 100644
--- a/Gui/VtkVis/CMakeLists.txt
+++ b/Gui/VtkVis/CMakeLists.txt
@@ -169,3 +169,5 @@ IF (OGS_USE_OPENSG)
 	USE_OPENSG(VtkVis)
 	INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/Gui/OpenSG )
 ENDIF (OGS_USE_OPENSG)
+
+set_property(TARGET VtkVis PROPERTY FOLDER "DataExplorer")
\ No newline at end of file