Compare commits

..

2 Commits

Author SHA1 Message Date
63a78debae docs(version): version bump v2.0.2 -> v2.0.3
this version disables installing the static lib for reflect-cpp which is not needed since its statically linked and was breaking python installations due to an inability to map the static lib to a path in the wheel
2025-12-20 14:45:23 -05:00
1534e83622 build(reflect-cpp): disable installing static lib 2025-12-20 14:44:17 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ reflect_cpp_library = static_library(
'reflect_cpp',
reflect_cpp_sources,
include_directories: reflect_cpp_include_dirs,
install: true,
install: false,
dependencies: [tomlpp_dep],
)

View File

@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# *********************************************************************** #
project('libconfig', ['cpp', 'c'], version: 'v2.0.2', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
project('libconfig', ['cpp', 'c'], version: 'v2.0.3', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
# Add default visibility for all C++ targets
add_project_arguments('-fvisibility=default', language: 'cpp')