diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-05-25 01:23:32 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-05-25 01:25:44 +0300 |
commit | 04b47c97e4eb54eee077ac28feb67a7b46ad3ff5 (patch) | |
tree | 535356a97ee25bf59522018eb37533e0daba155c /store | |
parent | a2b86d4e2db3ddbf2a4678863d3fe5e7a0b745ff (diff) |
Use special DLL and library name just for MSC
Diffstat (limited to 'store')
-rw-r--r-- | store/prj/d.lst | 1 | ||||
-rw-r--r-- | store/util/makefile.mk | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/store/prj/d.lst b/store/prj/d.lst index e39be093c53a..0cc1fc67b573 100644 --- a/store/prj/d.lst +++ b/store/prj/d.lst @@ -5,6 +5,7 @@ mkdir: %_DEST%\inc%_EXT%\store ..\util\store.xml %_DEST%\xml%_EXT%\store.xml ..\%__SRC%\lib\istore.lib %_DEST%\lib%_EXT%\istore.lib +..\%__SRC%\lib\libstore*.dll.a %_DEST%\lib%_EXT%\libstore*.dll.a ..\%__SRC%\lib\libstore.*.* %_DEST%\lib%_EXT%\* ..\%__SRC%\bin\sto*.dll %_DEST%\bin%_EXT%\sto*.dll diff --git a/store/util/makefile.mk b/store/util/makefile.mk index 492f54cfa4f4..5129273d81d0 100644 --- a/store/util/makefile.mk +++ b/store/util/makefile.mk @@ -56,7 +56,11 @@ LIB1FILES= $(LB)$/store.lib # --- Shared-Library --- SHL1TARGET= $(TARGET) +.IF "$(COM)" == "MSC" SHL1IMPLIB= istore +.ELSE +SHL1IMPLIB= store$(UDK_MAJOR) +.ENDIF SHL1VERSIONMAP= $(TARGET).map |