fixed source exclusion

This commit is contained in:
Dario Ghunney Ware 2025-06-09 15:50:19 +01:00
parent efab86f48b
commit 974db2a25c

View File

@ -51,7 +51,7 @@ sourceSets {
exclude 'stirling/software/proprietary/security/**'
}
if (System.getenv('STIRLING_PDF_DESKTOP_UI') == 'false') {
exclude 'stirling/software/SPDF/UI/impl/**'
exclude '**/stirling/software/SPDF/UI/impl/**'
}
}
}
@ -67,7 +67,7 @@ sourceSets {
if (System.getenv('STIRLING_PDF_DESKTOP_UI') != 'false'
|| (project.hasProperty('STIRLING_PDF_DESKTOP_UI')
&& project.getProperty('STIRLING_PDF_DESKTOP_UI') != 'false')) {
exclude 'stirling/software/SPDF/UI/impl/**'
exclude '**/stirling/software/SPDF/UI/impl/**'
}
}
}