diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2014-01-21 15:15:20 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2014-01-21 15:15:20 +0800 |
commit | c2876dfc7c395c51226f98501832951856e984ff (patch) | |
tree | 5707e89c7e7006cb9d206b4ec469397c1e7ab558 /build/gi-introspection-msvc.mak | |
parent | 9b83fc68fb0f78615d71e2ef46784f97b753e8cc (diff) | |
download | gobject-introspection-c2876dfc7c395c51226f98501832951856e984ff.tar.gz |
build/gi-introspection-msvc.mak: Correct a Library Name
Otherwise the .gir/.typelib for the GIRepository DLL would not be build
correctly-leftover oops when reworking the introspection files build
process.
Diffstat (limited to 'build/gi-introspection-msvc.mak')
-rw-r--r-- | build/gi-introspection-msvc.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/gi-introspection-msvc.mak b/build/gi-introspection-msvc.mak index 284d5c19..5b345fa5 100644 --- a/build/gi-introspection-msvc.mak +++ b/build/gi-introspection-msvc.mak @@ -159,7 +159,7 @@ GIRepository-$(GLIB_APIVERSION).gir: gi_list GObject-$(GLIB_APIVERSION).gir win3 --add-include-path=..\gir --add-include-path=. --namespace=GIRepository --nsversion=$(GLIB_APIVERSION) \ --identifier-prefix=GI --symbol-prefix=g --c-include="girepository.h" --add-include-path=. \ --no-libtool --pkg=gobject-$(GLIB_APIVERSION) --include=GObject-$(GLIB_APIVERSION) \ - --library=girepository-1-vs%VSVER% -I..\girepository -I.. -I%BASEDIR%\include \ + --library=$(GI_DLLNAME) -I..\girepository -I.. -I%BASEDIR%\include \ -I%BASEDIR%\include\glib-2.0 -I%BASEDIR%\lib\glib-2.0\include --filelist=gi_list \ -DGI_COMPILATION -o $@ |