News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

opening files after build

Started by ogre722, July 18, 2010, 02:34:33 AM

Previous topic - Next topic

ogre722

I am compiling psp(playstation portable) code in codeblocks and i want to make the debugging process as painless as possible. What I want to do is after the build is complete, run a bat file and then open the .eboot in my emulator. I have found the post-build steps option but I don't know how the command system works. I have tried to find an explanation but information is scarce. If anyone can help it will be greatly appreciated.

oBFusCATed

You have to place the path to the bat file in the post build step and it will be executed.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Pecan

#2
For example:

Place into the post build step
cmd.exe /c MyBatchCommands.cmd

where the file MyBatchCommadns.cmd contains a bunch of commands to execute.

or you could execute a single command like:


cmd.exe /c c:\path\MyEmulator.exe myboot.eboot