feat(opatIO): opat fileformat addedd

This commit is contained in:
2025-02-14 14:30:56 -05:00
parent a31f3bc835
commit cffec2f8d6
3 changed files with 424 additions and 0 deletions

18
src/opatIO/meson.build Normal file
View File

@@ -0,0 +1,18 @@
# 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')