mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 21:14:23 -04:00
Add cmake support
All compile need to test now git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@586714 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
4
mpeg/CMakeLists.txt
Normal file
4
mpeg/CMakeLists.txt
Normal file
@ -0,0 +1,4 @@
|
||||
ADD_SUBDIRECTORY( id3v1 )
|
||||
ADD_SUBDIRECTORY( id3v2 )
|
||||
|
||||
INSTALL(FILES mpegfile.h mpegproperties.h mpegheader.h xingheader.h DESTINATION ${INCLUDE_INSTALL_DIR}/taglib )
|
1
mpeg/id3v1/CMakeLists.txt
Normal file
1
mpeg/id3v1/CMakeLists.txt
Normal file
@ -0,0 +1 @@
|
||||
INSTALL( FILES id3v1tag.h id3v1genres.h DESTINATION ${INCLUDE_INSTALL_DIR}/taglib)
|
4
mpeg/id3v2/CMakeLists.txt
Normal file
4
mpeg/id3v2/CMakeLists.txt
Normal file
@ -0,0 +1,4 @@
|
||||
ADD_SUBDIRECTORY( frames )
|
||||
|
||||
INSTALL(FILES id3v2extendedheader.h id3v2frame.h id3v2header.h id3v2synchdata.h id3v2footer.h id3v2framefactory.h id3v2tag.h DESTINATION ${INCLUDE_INSTALL_DIR}/taglib)
|
||||
|
35
mpeg/id3v2/frames/CMakeLists.txt
Normal file
35
mpeg/id3v2/frames/CMakeLists.txt
Normal file
@ -0,0 +1,35 @@
|
||||
INSTALL( FILES attachedpictureframe.h commentsframe.h generalencapsulatedobjectframe.h relativevolumeframe.h textidentificationframe.h uniquefileidentifierframe.h unknownframe.h DESTINATION ${INCLUDE_INSTALL_DIR}/taglib)
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
#INCLUDES = \
|
||||
# -I$(top_srcdir)/taglib \
|
||||
# -I$(top_srcdir)/taglib/toolkit \
|
||||
# -I$(top_srcdir)/taglib/mpeg/id3v2 \
|
||||
# $(all_includes)
|
||||
#
|
||||
#noinst_LTLIBRARIES = libframes.la
|
||||
#
|
||||
#libframes_la_SOURCES = \
|
||||
# attachedpictureframe.cpp \
|
||||
# commentsframe.cpp \
|
||||
# generalencapsulatedobjectframe.cpp \
|
||||
# relativevolumeframe.cpp \
|
||||
# textidentificationframe.cpp \
|
||||
# uniquefileidentifierframe.cpp \
|
||||
# unknownframe.cpp
|
||||
#
|
||||
#taglib_include_HEADERS = \
|
||||
# attachedpictureframe.h \
|
||||
# commentsframe.h \
|
||||
# generalencapsulatedobjectframe.h \
|
||||
# relativevolumeframe.h \
|
||||
# textidentificationframe.h \
|
||||
# uniquefileidentifierframe.h \
|
||||
# unknownframe.h
|
||||
#
|
||||
#taglib_includedir = $(includedir)/taglib
|
||||
#
|
||||
#EXTRA_DIST = $(libframes_la_SOURCES) $(taglib_include_HEADERS)
|
@ -19,7 +19,7 @@
|
||||
* USA *
|
||||
***************************************************************************/
|
||||
|
||||
#include <config.h>
|
||||
#include <config-taglib.h>
|
||||
|
||||
#include <bitset>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
* USA *
|
||||
***************************************************************************/
|
||||
|
||||
#include <config.h>
|
||||
#include <config-taglib.h>
|
||||
|
||||
#include <tdebug.h>
|
||||
|
||||
|
Reference in New Issue
Block a user