Merge pull request #45 from tboudreaux/feature/pythonInterface/composition
Python Interface for composition module
This commit is contained in:
@@ -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')
|
||||
@@ -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'],
|
||||
|
||||
Reference in New Issue
Block a user