summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFederico Bassini <kurogan21@gmail.com>2017-01-19 09:49:15 +0100
committerjan iversen <jani@documentfoundation.org>2017-01-20 09:54:39 +0000
commit1585415e7869d525b70751004c46ce008b4ef129 (patch)
treea94f944543b8b5f8768ee7e7c68c64a25755ae56 /bin
parenta55e5389a84542768568acc7fd69af20e3fe0745 (diff)
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@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gbuild-to-ide2
1 files changed, 1 insertions, 1 deletions
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'),