SET(TARGET_DEFAULT_PREFIX "application_")
SET(TARGET_DEFAULT_LABEL_PREFIX "Applications")

# data path has been set in main Cmake-file
# just use: ${DATA_PATH}


SET(TARGET_COMMON_LIBRARIES 
    # nothing yet...
)

##################################################
# think of user options: decide which app should be build...
##################################################

IF (OSG_FOUND AND OSGCUDA_FOUND)
    ADD_SUBDIRECTORY(myApplication)
ENDIF(OSG_FOUND AND OSGCUDA_FOUND)




