sync C++ compiler detection under Windows with the C compiler detection

This commit is contained in:
Dimitar Zhekov 2013-06-06 20:19:15 +03:00 committed by Enrico Tröger
parent 0af6130fea
commit 42c00f2f50

View File

@ -303,9 +303,10 @@ def configure(conf):
def options(opt):
# Disable MSVC detetion on win32: building Geany with MSVC is currently not supported
# Disable MSVC detection on win32: building Geany with MSVC is currently not supported
# If anyone wants to add support for building with MSVC, this hack should be removed.
c_compiler['win32'] = ['gcc']
cxx_compiler['win32'] = ['g++']
opt.load('compiler_cc')
opt.load('compiler_cxx')