Closed Challanger524 closed 2 months ago
PR for issue: #237
If you try to build C++ target with option(BUILD_SHARED_LIBS "Enable shared library" OFF) - it will fail coz C code being built in shared-lib manner, due to missing LIBCONFIG_STATIC definition.
option(BUILD_SHARED_LIBS "Enable shared library"
)
LIBCONFIG_STATIC
This is the fix.
I have issue #238 I'm not sure how the perfect fix might look like. Can create PR with patch given in the issue.
PR for issue: #237
If you try to build C++ target with
option(BUILD_SHARED_LIBS "Enable shared library"
OFF)
- it will fail coz C code being built in shared-lib manner, due to missingLIBCONFIG_STATIC
definition.This is the fix.