Merge pull request #45 from tboudreaux/feature/pythonInterface/composition

Python Interface for composition module
This commit is contained in:
2025-04-30 11:57:23 -04:00
committed by GitHub
2 changed files with 9 additions and 4 deletions

View File

@@ -1,5 +1,10 @@
quill_cmake_options = cmake.subproject_options()
quill_cmake_options.add_cmake_defines({
'BUILD_SHARED_LIBS': 'ON',
'CMAKE_SKIP_INSTALL_RULES': 'ON'
})
quill_sp = cmake.subproject(
'quill'
'quill',
options: quill_cmake_options,
)
quill_dep = quill_sp.dependency('quill')
add_project_arguments('-I' + meson.current_build_dir() + '/subprojects/quill/__CMake_build', language: 'cpp')
quill_dep = quill_sp.dependency('quill')

View File

@@ -35,7 +35,7 @@ dependencies = [
]
# Define the liblogger library so it can be linked against by other parts of the build system
libprobe = static_library('probe',
libprobe = library('probe',
probe_sources,
include_directories: include_directories('public'),
cpp_args: ['-fvisibility=default'],