commit 677802fd93b32a314cb4d96d32da8072e0071ec2
parent 505f24b98b976fc6c11846bc9772d9991a2d00f8
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 15 Sep 2023 09:23:04 +0200
Add LIB_TYPE configuration macro
This macro was removed in commit 8e0dc04 in the belief that it was only
used for library construction. However, it is also used to notify the
type of library to be linked with.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/config.mk b/config.mk
@@ -4,6 +4,8 @@ VERSION_PATCH = 4
VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
PREFIX = /usr/local
+LIB_TYPE = SHARED
+#LIB_TYPE = STATIC
BUILD_TYPE = RELEASE
#BUILD_TYPE = DEBUG