Commit 52b54976 authored by Ghislain MARY's avatar Ghislain MARY

No longer force generator on Windows.

parent 8bcc138e
...@@ -46,8 +46,6 @@ class DesktopTarget(prepare.Target): ...@@ -46,8 +46,6 @@ class DesktopTarget(prepare.Target):
current_path = os.path.dirname(os.path.realpath(__file__)) current_path = os.path.dirname(os.path.realpath(__file__))
self.config_file = 'configs/config-desktop.cmake' self.config_file = 'configs/config-desktop.cmake'
self.output = 'OUTPUT/' + self.name 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') self.external_source_path = os.path.join(current_path, 'submodules')
...@@ -58,8 +56,6 @@ class PythonTarget(prepare.Target): ...@@ -58,8 +56,6 @@ class PythonTarget(prepare.Target):
current_path = os.path.dirname(os.path.realpath(__file__)) current_path = os.path.dirname(os.path.realpath(__file__))
self.config_file = 'configs/config-python.cmake' self.config_file = 'configs/config-python.cmake'
self.output = 'OUTPUT/' + self.name 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') self.external_source_path = os.path.join(current_path, 'submodules')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment