Branch: refs/heads/master Author: Dimitar Zhekov dimitar.zhekov@gmail.com Committer: Enrico Tröger enrico.troeger@uvena.de Date: Fri, 07 Jun 2013 04:57:41 UTC Commit: 42c00f2f508b40c33b838e3cd8b694c1f5abf188 https://github.com/geany/geany/commit/42c00f2f508b40c33b838e3cd8b694c1f5abf1...
Log Message: ----------- sync C++ compiler detection under Windows with the C compiler detection
Modified Paths: -------------- wscript
Modified: wscript 3 files changed, 2 insertions(+), 1 deletions(-) =================================================================== @@ -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')
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).