18 lines
465 B
Meson
18 lines
465 B
Meson
# Define the library
|
|
opatIO_sources = files(
|
|
'private/opatIO.cpp',
|
|
)
|
|
|
|
opatIO_headers = files(
|
|
'public/opatIO.h'
|
|
)
|
|
|
|
# Define the libopatIO library so it can be linked against by other parts of the build system
|
|
libopatIO = library('opatIO',
|
|
opatIO_sources,
|
|
include_directories: include_directories('public'),
|
|
cpp_args: ['-fvisibility=default'],
|
|
install : true)
|
|
|
|
# Make headers accessible
|
|
install_headers(opatIO_headers, subdir : '4DSSE/opatIO') |