0

Currently is seems like SciTe is trying to compile with g++ but I need it to compile with the vs compiler. how do I make it do this? its giving me this compiler error:

'g++' is not recognized as an internal or external command, operable program or batch file.

sepp2k
  • 363,768
  • 54
  • 674
  • 675
Dreken105
  • 149
  • 1
  • 1
  • 10

1 Answers1

0

You need to open cpp.properties file (Menu > Options > Open cpp.properties) then change command.compile.$(file.patterns.cplusplus) property to match your environment, which is set to gcc/g++ by default.

theta
  • 24,593
  • 37
  • 119
  • 159
  • ok thanks, i think i was given a cpp.properties file that was to do that for me but im gonna go in and self edit it – Dreken105 Jan 17 '13 at 00:10