From 52b54976a90d8bbaa1e5faf1bb51504d9848cc89 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 2 Jun 2016 16:49:21 +0200 Subject: [PATCH] No longer force generator on Windows. --- prepare.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/prepare.py b/prepare.py index 073486800..b86c95236 100755 --- a/prepare.py +++ b/prepare.py @@ -46,8 +46,6 @@ class DesktopTarget(prepare.Target): current_path = os.path.dirname(os.path.realpath(__file__)) self.config_file = 'configs/config-desktop.cmake' self.output = 'OUTPUT/' + self.name - if platform.system() == 'Windows': - self.generator = 'Visual Studio 12 2013' self.external_source_path = os.path.join(current_path, 'submodules') @@ -58,8 +56,6 @@ class PythonTarget(prepare.Target): current_path = os.path.dirname(os.path.realpath(__file__)) self.config_file = 'configs/config-python.cmake' self.output = 'OUTPUT/' + self.name - if platform.system() == 'Windows': - self.generator = 'Visual Studio 9 2008' self.external_source_path = os.path.join(current_path, 'submodules')