diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-11-16 20:16:32 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-11-19 14:05:28 +0200 |
commit | c33a63598db3f275e7555831458e1b9d4a4c0da3 (patch) | |
tree | 221a6f15d0ce4fc876c7aed93007b17854e94f6b /RepositoryExternal.mk | |
parent | 24beafda53baa1a2ca37a0d4d05331bf59b0dcab (diff) |
Use correct GLyphy library file name in the MSVC case
Change-Id: I77b55e796c35d1a186fecfddc6a109ded7d54064
Diffstat (limited to 'RepositoryExternal.mk')
-rw-r--r-- | RepositoryExternal.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk index 50d5f0419878..42630d0f9911 100644 --- a/RepositoryExternal.mk +++ b/RepositoryExternal.mk @@ -288,10 +288,15 @@ $(call gb_LinkTarget_set_include,$(1),\ $$(INCLUDE) \ ) +ifeq ($(COM),MSC) +$(call gb_LinkTarget_add_libs,$(1),\ + $(call gb_UnpackedTarball_get_dir,glyphy)/src/.libs/libglyphy.lib \ +) +else $(call gb_LinkTarget_add_libs,$(1),\ -L$(call gb_UnpackedTarball_get_dir,glyphy)/src/.libs -lglyphy \ ) - +endif endef endif # SYSTEM_GLYPHY |