Skip to content

Commit

Permalink
Add import library to zip (windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnsmkl committed Oct 9, 2016
1 parent 430cfe7 commit 96fea9a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ ifeq (Darwin, ${_system_type})
else
ifdef WIN
LIBNAME=$(BLD)/libfsqlf.dll
LIBFLAGS=-shared -Wl,--out-implib,libfsqlf.a
LIBNAME2=$(BLD)/libfsqlf.lib
LIBFLAGS=-shared -Wl,--out-implib,$(LIBNAME2)
else
LIBNAME=$(BLD)/libfsqlf.so
LIBFLAGS=-shared
Expand Down Expand Up @@ -210,7 +211,7 @@ tmp_folder: LICENSE README.md
prep_bin: $(EXEC_CLI) $(EXEC_GUI) $(LIBNAME) $(BLD)/formatting.conf
rm -Rf $(PKGAREA)/$(PRJNAME)/$(OS_TARGET)
mkdir -p $(PKGAREA)/$(PRJNAME)/$(OS_TARGET)
cp -t $(PKGAREA)/$(PRJNAME)/$(OS_TARGET) $^
cp -t $(PKGAREA)/$(PRJNAME)/$(OS_TARGET) $^ $(LIBNAME2)



Expand Down

0 comments on commit 96fea9a

Please sign in to comment.