## =============================== ## == Some configurable options == ## =============================== SET(cpPlugins_CONFIG_NUMBER_OF_FILES "10" CACHE STRING "Number of compiled files.") SET(cpPlugins_CONFIG_PROCESS_DIMENSIONS "1;2;3" CACHE STRING "Accepted processing dimensions.") SET(cpPlugins_CONFIG_VISUAL_DIMENSIONS "2;3" CACHE STRING "Accepted visual dimensions.") SET( _all_configs cpPlugins_CONFIG_PROCESS_DIMENSIONS cpPlugins_CONFIG_VISUAL_DIMENSIONS ) SET(_real_configs) FOREACH(_cfg ${_all_configs}) FOREACH(_type ${${_cfg}}) LIST(APPEND _real_configs "${_cfg}_${_type}") ENDFOREACH(_type) ENDFOREACH(_cfg) SET(cpPlugins_ALL_CONFIGS "${_real_configs}" CACHE INTERNAL "All valid configurations." FORCE) ## eof - $RCSfile$