How to find out the list of files (or modules) that were compiled during the build project.
Answered
How to find out the list of files (or modules) that were compiled during the build project.
I need.
1. Run the build project.
2. Run an ant script with the parameter "List of paths to compiled modules".
Yes, in the "out" folder are all the compiled files, but I need files (or modules) that were compiled with the latest build project.
Example:
1. We do rebuild project (all files were recompiled).
2. Change 2 files in different modules.
3. Make build projec (2 files recompiled)
4. Run ant scpript with a parameter that contains the path to these 2 files (or the path to these modules in which the files are located).
Please sign in to leave a comment.
You can get such information in build.log file with debugging log level enabled but there is no such a way form the UI. You can also consider creating a plugin, see
http://www.jetbrains.org/intellij/sdk/docs/welcome.html
http://www.jetbrains.org/intellij/sdk/docs/reference_guide/frameworks_and_external_apis/external_builder_api.html