When building C++ code using the waf build system, can I choose a specific C++ compiler command?
While it is possible to run something like "CXX=g++-4.9 waf configure", or to get the same effect by setting os.environ['CXX'] in the wscript file, is there a 'proper' way of doing this?
i.e. What is the waf equivalent of setting the CXX variable in a Makefile.