diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2015-03-10 16:54:49 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2015-03-10 16:54:49 +0800 |
commit | 0cc4864af51dcce22752e8944fcf3667e74c4187 (patch) | |
tree | 04128ec51a5191efa0d258a96cf8d6af9d54688e /build/win32/vs10 | |
parent | 39b1d283c798a15b6d6dbe44b906e19883ad179d (diff) | |
download | gobject-introspection-0cc4864af51dcce22752e8944fcf3667e74c4187.tar.gz |
MSVC Builds: "Install" the .pdb Files
Copy the .pdb files with the built DLLs and EXEs, so that it would make it
easier fore people that are developing G-I for are developing items using
G-I, since we are already generating the .pdb files for all builds.
Diffstat (limited to 'build/win32/vs10')
-rw-r--r-- | build/win32/vs10/gi-install.propsin | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/win32/vs10/gi-install.propsin b/build/win32/vs10/gi-install.propsin index 6a7e1990..6bdc997d 100644 --- a/build/win32/vs10/gi-install.propsin +++ b/build/win32/vs10/gi-install.propsin @@ -12,17 +12,22 @@ mkdir $(CopyDir) mkdir $(CopyDir)\bin copy $(BinDir)\$(LibGIDllPrefix)girepository$(LibGIDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(LibGIDllPrefix)girepository$(LibGIDllSuffix).pdb $(CopyDir)\bin copy $(BinDir)\g-ir-compiler.exe $(CopyDir)\bin +copy $(BinDir)\g-ir-compiler.pdb $(CopyDir)\bin copy $(BinDir)\g-ir-generate.exe $(CopyDir)\bin +copy $(BinDir)\g-ir-generate.pdb $(CopyDir)\bin copy ..\..\..\tools\g-ir-annotation-tool $(CopyDir)\bin copy ..\..\..\tools\g-ir-doc-tool $(CopyDir)\bin copy ..\..\..\tools\g-ir-scanner $(CopyDir)\bin copy $(BinDir)\glib-print.exe $(CopyDir)\bin +copy $(BinDir)\glib-print.pdb $(CopyDir)\bin #include "gir.vs10.install" copy $(BinDir)\_giscanner.pyd $(CopyDir)\lib\gobject-introspection\giscanner +copy $(BinDir)\_giscanner.pdb $(CopyDir)\lib\gobject-introspection\giscanner mkdir $(CopyDir)\share\gir-$(ApiVersion) mkdir $(CopyDir)\share\gobject-introspection-$(ApiVersion) |