I've got a problem regarding a custom build project.
The command line for the build process is "d:\programs\TaskingV3.5r1\ctc\bin\amk -j -w all". Furthermore no makefile-generator is used (because the makefile is already present).
These settings provide the following output when starting the build-process (which is fine):
Now I'd like to run a batch-file after the build-process. So I added the Post-Build command "D:\tmp\neuerTaskingTemp\Appl1\Appl1\ChecksumTriCore.bat". When I build the project now I get the following output:----------Build Started--------
MESSAGE: Entering directory `D:\tmp\neuerTaskingTemp\Appl1\Appl1\Debug'
C:\WINDOWS\system32\cmd.exe /c "d:\programs\TaskingV3.5r1\ctc\bin\amk -j -w all"
----------Building project:[ App1 - Debug ]----------
Linking to Appl1.elf
----------Build Ended----------
0 errors, 0 warnings
So obviously the post-build command makes Codelite use mingw - which is not installed on my system and therefore cannot be used.----------Build Started--------
MESSAGE: Entering directory `D:\tmp\neuerTaskingTemp\Appl1\Appl1\Debug'
C:\WINDOWS\system32\cmd.exe /c ""mingw32-make.exe" -j 2 -f "App1.mk""
----------Building project:[ App1 - Debug ]----------
'"mingw32-make.exe"' is not recognized as an internal or external command,
operable program or batch file.
----------Build Ended----------
0 errors, 0 warnings
Is there a workaround for this problem?
Best regards