feat(opatIO): opat fileformat addedd
This commit is contained in:
18
src/opatIO/meson.build
Normal file
18
src/opatIO/meson.build
Normal 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')
|
||||
Reference in New Issue
Block a user