tagparser/CMakeLists.txt

180 lines
4.3 KiB
CMake
Raw Normal View History

2015-12-05 22:53:30 +01:00
cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
2015-12-08 08:38:26 +01:00
# add project files
set(HEADER_FILES
exceptions.h
mp4/mp4atom.h
mp4/mp4container.h
mp4/mp4ids.h
mp4/mp4tag.h
mp4/mp4tagfield.h
mp4/mp4track.h
mp4/mpeg4descriptor.h
# aac/aaccodebook.h
# aac/aacframe.h
abstractattachment.h
abstractchapter.h
abstractcontainer.h
abstracttrack.h
adts/adtsframe.h
adts/adtsstream.h
2016-02-17 20:19:05 +01:00
aspectratio.h
avc/avcconfiguration.h
avc/avcinfo.h
2015-12-08 08:38:26 +01:00
avi/bitmapinfoheader.h
backuphelper.h
basicfileinfo.h
caseinsensitivecomparer.h
mpegaudio/mpegaudioframe.h
mpegaudio/mpegaudioframestream.h
notification.h
ogg/oggcontainer.h
ogg/oggiterator.h
ogg/oggpage.h
ogg/oggstream.h
2016-01-17 19:32:58 +01:00
opus/opusidentificationheader.h
2016-05-14 00:24:01 +02:00
flac/flactooggmappingheader.h
flac/flacmetadata.h
2016-05-16 20:56:53 +02:00
flac/flacstream.h
2015-12-08 08:38:26 +01:00
positioninset.h
signature.h
size.h
statusprovider.h
tag.h
tagtarget.h
tagvalue.h
vorbis/vorbiscomment.h
vorbis/vorbiscommentfield.h
vorbis/vorbiscommentids.h
vorbis/vorbisidentificationheader.h
vorbis/vorbispackagetypes.h
wav/waveaudiostream.h
fieldbasedtag.h
genericcontainer.h
genericfileelement.h
generictagfield.h
id3/id3genres.h
id3/id3v1tag.h
id3/id3v2frame.h
id3/id3v2frameids.h
id3/id3v2tag.h
localeawarestring.h
margin.h
matroska/matroskaid.h
matroska/ebmlelement.h
matroska/ebmlid.h
matroska/matroskaattachment.h
matroska/matroskachapter.h
matroska/matroskacontainer.h
matroska/matroskacues.h
matroska/matroskaeditionentry.h
matroska/matroskaseekinfo.h
matroska/matroskatag.h
matroska/matroskatagfield.h
matroska/matroskatagid.h
matroska/matroskatrack.h
mediafileinfo.h
mediaformat.h
)
set(SRC_FILES
mp4/mp4atom.cpp
mp4/mp4container.cpp
mp4/mp4ids.cpp
mp4/mp4tag.cpp
mp4/mp4tagfield.cpp
mp4/mp4track.cpp
mp4/mpeg4descriptor.cpp
# aac/aaccodebook.cpp
# aac/aacframe.cpp
abstractattachment.cpp
abstractchapter.cpp
abstractcontainer.cpp
abstracttrack.cpp
adts/adtsframe.cpp
adts/adtsstream.cpp
2016-02-17 20:19:05 +01:00
aspectratio.cpp
avc/avcconfiguration.cpp
avc/avcinfo.cpp
2015-12-08 08:38:26 +01:00
avi/bitmapinfoheader.cpp
backuphelper.cpp
basicfileinfo.cpp
exceptions.cpp
mpegaudio/mpegaudioframe.cpp
mpegaudio/mpegaudioframestream.cpp
notification.cpp
ogg/oggcontainer.cpp
ogg/oggiterator.cpp
ogg/oggpage.cpp
ogg/oggstream.cpp
2016-01-17 19:32:58 +01:00
opus/opusidentificationheader.cpp
2016-05-14 00:24:01 +02:00
flac/flactooggmappingheader.cpp
flac/flacmetadata.cpp
2016-05-16 20:56:53 +02:00
flac/flacstream.cpp
2015-12-08 08:38:26 +01:00
signature.cpp
statusprovider.cpp
tag.cpp
tagtarget.cpp
tagvalue.cpp
vorbis/vorbiscomment.cpp
vorbis/vorbiscommentfield.cpp
vorbis/vorbisidentificationheader.cpp
wav/waveaudiostream.cpp
id3/id3genres.cpp
id3/id3v1tag.cpp
id3/id3v2frame.cpp
id3/id3v2frameids.cpp
id3/id3v2tag.cpp
localeawarestring.cpp
matroska/ebmlelement.cpp
matroska/matroskaattachment.cpp
matroska/matroskachapter.cpp
matroska/matroskacontainer.cpp
matroska/matroskacues.cpp
matroska/matroskaeditionentry.cpp
matroska/matroskaid.cpp
matroska/matroskaseekinfo.cpp
matroska/matroskatag.cpp
matroska/matroskatagfield.cpp
matroska/matroskatagid.cpp
matroska/matroskatrack.cpp
mediafileinfo.cpp
mediaformat.cpp
)
2016-02-17 20:19:05 +01:00
set(TEST_HEADER_FILES
)
set(TEST_SRC_FILES
tests/cppunit.cpp
tests/overall.cpp
2016-02-17 20:19:05 +01:00
)
2015-12-08 08:38:26 +01:00
2016-06-10 23:08:01 +02:00
set(DOC_FILES
README.md
)
2015-12-05 22:53:30 +01:00
# meta data
set(META_PROJECT_NAME tagparser)
set(META_PROJECT_VARNAME TAG_PARSER)
2015-12-05 22:53:30 +01:00
set(META_APP_NAME "Tag Parser")
set(META_APP_AUTHOR "Martchus")
set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}")
2016-07-22 01:36:54 +02:00
set(META_APP_DESCRIPTION "C++ library for reading and writing MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags")
set(META_VERSION_MAJOR 6)
2015-12-05 22:53:30 +01:00
set(META_VERSION_MINOR 0)
2016-01-17 19:32:58 +01:00
set(META_VERSION_PATCH 0)
2015-12-05 22:53:30 +01:00
# find c++utilities
2016-06-10 23:08:01 +02:00
find_package(c++utilities 4.0.0 REQUIRED)
use_cpp_utilities()
2015-12-08 08:38:26 +01:00
2016-07-22 01:36:54 +02:00
# find 3rd party libraries
include(3rdParty)
use_external_library_from_package(ZLIB ANY_VERSION ZLIB_INCLUDE_DIRS ZLIB_LIBRARIES AUTO_LINKAGE REQUIRED) # zlib
2015-12-05 22:53:30 +01:00
# include modules to apply configuration
include(BasicConfig)
include(WindowsResources)
include(LibraryTarget)
include(TestTarget)
2016-06-10 23:08:01 +02:00
include(Doxygen)
2016-07-27 21:39:21 +02:00
include(ConfigHeader)