You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
538 B
Meson
25 lines
538 B
Meson
2 years ago
|
if not expat_dep.found()
|
||
|
xmp_lib = files()
|
||
|
subdir_done()
|
||
|
endif
|
||
|
|
||
|
libinc = [libinc, include_directories('include')]
|
||
|
xmp_lib = files(
|
||
|
'src/ExpatAdapter.cpp',
|
||
|
'src/MD5.cpp',
|
||
|
'src/ParseRDF.cpp',
|
||
|
'src/UnicodeConversions.cpp',
|
||
|
'src/WXMPIterator.cpp',
|
||
|
'src/WXMPMeta.cpp',
|
||
|
'src/WXMPUtils.cpp',
|
||
|
'src/XML_Node.cpp',
|
||
|
'src/XMPCore_Impl.cpp',
|
||
|
'src/XMPIterator.cpp',
|
||
|
'src/XMPMeta-GetSet.cpp',
|
||
|
'src/XMPMeta-Parse.cpp',
|
||
|
'src/XMPMeta-Serialize.cpp',
|
||
|
'src/XMPMeta.cpp',
|
||
|
'src/XMPUtils-FileInfo.cpp',
|
||
|
'src/XMPUtils.cpp',
|
||
|
)
|