diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt
index ac014a7..effe971 100755
--- a/example/CMakeLists.txt
+++ b/example/CMakeLists.txt
@@ -10,7 +10,7 @@ project( openframeworks )
 # ===================== User Settings ====================
 # ========================================================
 # ---------------------- App name  -----------------------
-set( APP_NAME   ofApp )
+set( APP_NAME   example_ofxPiMapper )
 
 # ------------------------ OF Path -----------------------
 # --- If outside the OF stucture, set an absolute OF path
@@ -19,22 +19,18 @@ set( OF_DIRECTORY_BY_USER "../../.." )
 # --------------------- Source Files ---------------------
 set( ${APP_NAME}_SOURCE_FILES
         src/main.cpp
-        src/ofApp.cpp )
+        src/ofApp.cpp
+        src/CrossSource.cpp
+        src/CustomSource.cpp
+        src/Settings.cpp)
 
 
 # ------------------------ AddOns  -----------------------
 set( OFX_ADDONS_ACTIVE
-        #        ofxXmlSettings
-        #        ofxOsc
-        #        ofxGui
-        #        ofxNetwork
-        #        ofxVectorGraphics
-        #        ofxThreadedImageLoader
-        #        ofxAssimpModelLoader
-        #        ofxKinect
-        #        ofxOpenCv
-        #        ofxSvg
-        #        ofxEmscripten (untested)
+                ofxXmlSettings
+                ofxGui
+        #        ofxPiMapper
+        #        ofxIO
                 )
 
 # =========================================================================