From 1585415e7869d525b70751004c46ce008b4ef129 Mon Sep 17 00:00:00 2001 From: Federico Bassini Date: Thu, 19 Jan 2017 09:49:15 +0100 Subject: gbuild-to-ide.py - change directory for .sln,.vcxproj,.filters this change the directory of all files .sln, . vcxproj,.filters to windows folder i change only a variable VisualStudioIntegrationGenerator.solution_path from './' to './windows'. i investigate in the .vcxproj, .filters, .sln if there are references to change but i don't find anything (all the files written in this files are an absolute path) and i test 'make vs2013-ide-integration'... the files are exactly generated, i test in a windows machine and visual studio work perfectly... Change-Id: I111c39173b95a6888c8d39058b1db4da7a9be206 Reviewed-on: https://gerrit.libreoffice.org/33301 Reviewed-by: jan iversen Tested-by: jan iversen --- bin/gbuild-to-ide | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index dae2f973146d..3d2c68580d32 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -788,7 +788,7 @@ class VisualStudioIntegrationGenerator(IdeIntegrationGenerator): def __init__(self, gbuildparser, ide): IdeIntegrationGenerator.__init__(self, gbuildparser, ide) self.toolset = self.retrieve_toolset() - self.solution_directory = './' + self.solution_directory = './windows' self.configurations = { 'Build': { 'build': self.module_make_command('%(target)s'), -- cgit