2025-02-14 14:30:56 -05:00
|
|
|
# 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'],
|
2025-02-17 13:00:01 -05:00
|
|
|
dependencies: [picosha2_dep],
|
|
|
|
|
install : true,
|
|
|
|
|
)
|
2025-02-14 14:30:56 -05:00
|
|
|
|
|
|
|
|
# Make headers accessible
|
|
|
|
|
install_headers(opatIO_headers, subdir : '4DSSE/opatIO')
|