From 04afa25bcbef482ada54c883e56c7661c7445625 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 19 Jul 2019 21:27:34 +0300 Subject: [PATCH] Build shared libraries by default (WCC_MAKEFILE) This is to match the behavior of CMake script. * WCC_MAKEFILE (MAKE_AS_DLL): Uncomment. * WCC_MAKEFILE (MAKE_AS_LIB): Comment out. --- WCC_MAKEFILE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WCC_MAKEFILE b/WCC_MAKEFILE index fa929294..dd7777b4 100644 --- a/WCC_MAKEFILE +++ b/WCC_MAKEFILE @@ -8,8 +8,8 @@ SYSTEM=MSWIN32 # The collector can be built either as dynamic or as static library. # Select the library type you need. -#MAKE_AS_DLL=1 -MAKE_AS_LIB=1 +MAKE_AS_DLL=1 +#MAKE_AS_LIB=1 # Select calling conventions. # Possible choices are r and s. -- 2.40.0