⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.am

📁 本人收集整理的一份c/c++跨平台网络库
💻 AM
字号:
# Copyright (C) 1999 Scott Thomas Haug <scott@id3.org># Copyright (C) 2002 Thijmen Klok <thijmen@id3lib.org>#  # This file is free software; as a special exception the author gives# unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved.# # This program is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.LT_VERSION = $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)if ID3_NEEDZLIBzlib_include = -I$(top_srcdir)/zlib/includeelsezlib_include = endifINCLUDES = \  @ID3LIB_DEBUG_FLAGS@ -I$(top_srcdir)/include/id3 -I$(top_srcdir)/include $(zlib_include)noinst_HEADERS =                \  field_def.h                   \  field_impl.h                  \  flags.h                       \  frame_def.h                   \  frame_impl.h                  \  header.h                      \  header_frame.h                \  header_tag.h                  \  mp3_header.h                  \  tag_impl.h                    \  spec.h                        id3lib_sources =                \  c_wrapper.cpp                 \  field.cpp                     \  field_binary.cpp              \  field_integer.cpp             \  field_string_ascii.cpp        \  field_string_unicode.cpp      \  frame.cpp                     \  frame_impl.cpp                \  frame_parse.cpp               \  frame_render.cpp              \  globals.cpp                   \  header.cpp                    \  header_frame.cpp              \  header_tag.cpp                \  helpers.cpp                   \  io.cpp                        \  io_decorators.cpp             \  io_helpers.cpp                \  misc_support.cpp              \  mp3_parse.cpp                 \  readers.cpp                   \  spec.cpp                      \  tag.cpp                       \  tag_file.cpp                  \  tag_find.cpp                  \  tag_impl.cpp                  \  tag_parse.cpp                 \  tag_parse_lyrics3.cpp         \  tag_parse_musicmatch.cpp      \  tag_parse_v1.cpp              \  tag_render.cpp                \  utils.cpp                     \  writers.cpp                   lib_LTLIBRARIES   = libid3.la libid3_la_SOURCES = $(id3lib_sources)if ID3_NEEDZLIBLDADD        = $(top_builddir)/zlib/src/libz.laendiflibid3_la_LDFLAGS = \  -version-info $(LT_VERSION) \  -release $(LT_RELEASE) \  -export-dynamic

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -