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:
Laurent Montel
2006-09-20 12:52:28 +00:00
parent dae3f83820
commit e3cf99c87a
23 changed files with 486 additions and 2 deletions

4
mpeg/CMakeLists.txt Normal file
View 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 )

View File

@ -0,0 +1 @@
INSTALL( FILES id3v1tag.h id3v1genres.h DESTINATION ${INCLUDE_INSTALL_DIR}/taglib)

View 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)

View 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)

View File

@ -19,7 +19,7 @@
* USA *
***************************************************************************/
#include <config.h>
#include <config-taglib.h>
#include <bitset>

View File

@ -19,7 +19,7 @@
* USA *
***************************************************************************/
#include <config.h>
#include <config-taglib.h>
#include <tdebug.h>