a few minor tweaks to get things to compile with XE Composer 2013
parent
35da602d4e
commit
c1d9fd195f
|
@ -111,7 +111,10 @@ def generate(env):
|
|||
else:
|
||||
raise Exception('Unknown version of visual studio!')
|
||||
|
||||
icpp_path = os.environ.get('ICPP_COMPOSER2011')
|
||||
if 'ICPP_COMPOSER2011' in os.environ:
|
||||
icpp_path = os.environ.get('ICPP_COMPOSER2011')
|
||||
else:
|
||||
icpp_path = os.environ.get('ICPP_COMPILER13')
|
||||
merge_script_vars(env, os.path.join(icpp_path, 'bin/iclvars.bat'), arch + ' ' + vsrelease)
|
||||
env['REDIST_PATH'] = os.path.join(os.path.join(os.path.join(icpp_path, 'redist'), arch_redist), 'compiler')
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <mitsuba/core/platform.h>
|
||||
#include <QtGui/QtGui>
|
||||
#include <QtOpenGL/QGLFormat>
|
||||
#include <mitsuba/core/shvector.h>
|
||||
|
|
Loading…
Reference in New Issue