This is a section of my cpp.properties:
command.compile.$(file.patterns.cplusplus)=$(cc)
command.build.$(file.patterns.cplusplus)=$(make.command)
command.go.$(file.patterns.cplusplus)=start C:\Projects\main.exe
command.go.needs.$(file.patterns.cplusplus)=g++ $(ccopts) $
(FileNameExt) -o $(FileName)
The output when I do go:
>start C:\Projects\main.exe
>The system cannot find the file specified.
( This also happens with command.go.$(file.patterns.cplusplus)=start $
(FileName) and
command.go.$(file.patterns.cplusplus)=start $(FileName).exe )
I've triple checked that it's the correct directory, and it works in
cmd.
I tried:
command.go.$(file.patterns.cplusplus)=C:\Projects\main.exe
output:
>C:\Projects\main.exe
*freezes just like the original problem*
I would greatly appreciate if someone could tell me the proper way
On Oct 25, 8:51 pm, math mhb <
math...@gmail.com> wrote:
> Your program is a GUI application, not a console application. SciTE can only
> capture the output of console application.
> To run a GUI application in SciTE, you may use "start main.exe" as the
> command line.
>
> 2009/10/26 deuhon <
yoonk...@gmail.com>
> --
> Best regards,
>
> Hongbin Ma