CMake: ignore config files (and tests) for skipped modules.

main
Adriaan de Groot 7 years ago
parent ad89dd7cc4
commit 3723355fb9

@ -33,6 +33,7 @@ function( calamares_add_module_subdirectory )
# the calling CMakeLists (which is src/modules/CMakeLists.txt normally). # the calling CMakeLists (which is src/modules/CMakeLists.txt normally).
if ( SKIPPED_MODULES ) if ( SKIPPED_MODULES )
set( SKIPPED_MODULES ${SKIPPED_MODULES} PARENT_SCOPE ) set( SKIPPED_MODULES ${SKIPPED_MODULES} PARENT_SCOPE )
set( MODULE_CONFIG_FILES "" )
endif() endif()
# ...otherwise, we look for a module.desc. # ...otherwise, we look for a module.desc.
elseif( EXISTS "${_mod_dir}/module.desc" ) elseif( EXISTS "${_mod_dir}/module.desc" )

Loading…
Cancel
Save