diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-08-05 16:22:51 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-08-05 16:22:51 +0000 |
commit | cf46733632c7279a9fd0fe6ce26f9185a4ae82a9 (patch) | |
tree | da27775a2161723ef342e91af41a8b51fedef405 /build/generator/gen_msvc_dsp.py | |
parent | bb0ef45f7c46b0ae221b26265ef98a768c33f820 (diff) | |
download | subversion-tarball-master.tar.gz |
subversion-1.9.7HEADsubversion-1.9.7master
Diffstat (limited to 'build/generator/gen_msvc_dsp.py')
-rw-r--r-- | build/generator/gen_msvc_dsp.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/build/generator/gen_msvc_dsp.py b/build/generator/gen_msvc_dsp.py index 854b8fa..e2bd40d 100644 --- a/build/generator/gen_msvc_dsp.py +++ b/build/generator/gen_msvc_dsp.py @@ -82,7 +82,6 @@ class Generator(gen_win.WinGeneratorBase): 'rootpath' : self.rootpath, 'platforms' : self.platforms, 'configs' : configs, - 'includes' : self.get_win_includes(target), 'sources' : sources, 'default_platform' : self.platforms[0], 'default_config' : configs[0].name, @@ -128,8 +127,6 @@ class Generator(gen_win.WinGeneratorBase): ( ('project_guid', self.makeguid('svn_locale')), )) - self.write_zlib_project_file('zlib.dsp') - self.write_serf_project_file('serf.dsp') install_targets = self.get_install_targets() targets = [ ] @@ -151,9 +148,9 @@ class Generator(gen_win.WinGeneratorBase): depends = [ ] if not isinstance(target, gen_base.TargetI18N): depends = self.adjust_win_depends(target, name) - #print name - #for dep in depends: - # print " ",dep.name + #print name + #for dep in depends: + # print " ",dep.name dep_names = [ ] for dep in depends: |