[Libreoffice-commits] core.git: bin/gbuild-to-ide

Federico Bassini kurogan21 at gmail.com
Fri Jan 20 09:55:04 UTC 2017


 bin/gbuild-to-ide |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1585415e7869d525b70751004c46ce008b4ef129
Author: Federico Bassini <kurogan21 at gmail.com>
Date:   Thu Jan 19 09:49:15 2017 +0100

    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 <jani at documentfoundation.org>
    Tested-by: jan iversen <jani at documentfoundation.org>

diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index dae2f97..3d2c685 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'),


More information about the Libreoffice-commits mailing list