I'm using CodeLite and mingw64 compiler on win10. When I build my C++ projects, it creates a temporary batch file in the %temp% folder with a structure r"make\d+-\d+.bat" (example: make9036-20.bat). Now Avast thinks those are viruses, so it blocks them. I don't want to exclude the whole %temp% folder, so imo., making a subfolder for temp "make... .bat" files and excluding it would be the best solution.
I found the "Intermediate Directory" setting in the Project Settings, but that won't affect the .bat files.
...So, I would like to know, how to change the default CodeLite/MinGW temp files path to something else (like %temp%\mingw.tmp or similar).
Thank you for any kind of help, TTS