summaryrefslogtreecommitdiffstats
path: root/Modules/UseJava/ClearClassFiles.cmake
Commit message (Collapse)AuthorAgeFilesLines
* LICENSE: Replace references to Copyright.txt with LICENSE.rstKitware Robot2025-03-031-1/+1
| | | | | | | | | | ``` git grep -lz 'Copyright.txt or https://cmake.org/licensing ' | while IFS= read -r -d $'\0' f ; do sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / { s/Copyright.txt/LICENSE.rst/ }' "$f" ; done ```
* UseJava: Reduce add_jar verbosity by defaultGold8562024-08-131-1/+1
| | | | | | Set "Clean class files" message to verbose. Fixes: #22107
* Modules: Fix CMP0159 warnings in modules when tracingJuan Ramos2024-03-291-0/+5
| | | | Closes: #25829
* UseJava: clean class files from previous buildsAlexey Karndshev2020-04-061-0/+17
If java_class_filelist exists, remove previous class files before building the new ones. If java_sources content has changed, clean and rebuild the class files of the target. Fixes: #20377