This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

CodeWright Integration

I read an earlier entry that asked how to integrate CodeWright with the Keil compiler. The answer was that a third party company provides an IDE that does it.

I would like to configure CodeWright to build using the Keil tools rather than to buy more tools that replace the ones I already own.

I prefer not to have to use makefiles or batchfiles. Keil's integrated make utility is very nice and it seems that there should be a way of utilizing it from Codewright but I have no idea how.

Does anyone have any insight on if and how this can be done?

Thanks in advance, any help is much appreciated.

Parents
  • I was really hoping to get away from makefiles

    At least with a makefile you can escape Keil's insistence on rebuilding all files with the SRC directive, whether they need it or not ;-)

    Anyhow, it is possible to run uVision from a command line, have it build a project, save the results in a logfile, and exit; eg,

    uv2.exe -b -o logfile project

Reply
  • I was really hoping to get away from makefiles

    At least with a makefile you can escape Keil's insistence on rebuilding all files with the SRC directive, whether they need it or not ;-)

    Anyhow, it is possible to run uVision from a command line, have it build a project, save the results in a logfile, and exit; eg,

    uv2.exe -b -o logfile project

Children