Page 1 of 1
How to use external tool?
Posted: Fri Oct 12, 2018 4:11 pm
by wombats
I want to create an external tool that launches when my project is compiled. However, it doesn't work when I add it to the "Configure Tools" dialog.
To test it, I created a program that just opens a message box.
When I click the tool in the "Tools" menu, it doesn't run.
Is there something special that needs to be done to make them work?

Re: How to use external tool?
Posted: Fri Oct 12, 2018 6:34 pm
by mk-soft
Path not complet...
and use double-quotes
"/Volumes/SD Card 1/MyTool.app/Contents/MacOS/MyTool"
Re: How to use external tool?
Posted: Fri Oct 12, 2018 6:52 pm
by wombats
It works when I set "Commandline" to the exec file within the bundle, so thank you for that hint. I was using the .app because that's what the file selector would let me pick.
It does not work with double-quotes, but it does without.
Re: How to use external tool?
Posted: Fri Dec 07, 2018 9:17 am
by ustuode
Re: How to use external tool?
Posted: Fri Dec 07, 2018 9:31 am
by Ajm
You need the command line to point to the executable within the .app bundle.
Regards
Andy
Re: How to use external tool?
Posted: Fri Dec 07, 2018 9:49 am
by ustuode
Ajm wrote:You need the command line to point to the executable within the .app bundle.
Regards
Andy
thank u , it works, it need written like this /test.app/Contents/MacOS/test