Hi all,
I'm trying to compile my project which uses the SCons construction tool, and so I use the "This is a custom Makefile" option.
This is my Makefile :
all:
scons
release:
scons
debug:
scons debug=1
cleanrelease:
scons -c
cleandebug:
scons debug=1 -c
And this is what I get when trying to compile : "MyProject - release" uses an invalid compiler [YOUR ANSWER IS ALREADY THERE. SEARCH THE FORUMS!]. Skipping...
I have 2 targets for my project, "release" and "debug" (without and uppercase).
I have got another project where this method works pretty well, I don't understand the problem...
Thanks in advance for your help
