~ubuntu-branches/ubuntu/wily/kid3/wily

« back to all changes in this revision

Viewing changes to src/plugins/freedbimport/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Mark Purcell, Patrick Matthäi, Mark Purcell
  • Date: 2013-11-30 15:44:59 UTC
  • mfrom: (1.1.16) (2.1.18 sid)
  • Revision ID: package-import@ubuntu.com-20131130154459-s6lpalx8yy2zq7gx
Tags: 3.0.2-1
* New upstream release 

[ Patrick Matthäi ]
* New upstream release.
  - Add new libreadline-dev build dependency.
* Don't explicitly request xz compression - dpkg 1.17 does this by default.
* Bump Standards-Version to 3.9.5 (no changes needed).
* Fix Vcs-Browser control field.

[ Mark Purcell ]
* Switch to dh - reduce debian/rules bloat
* kid3 Replaces kid3-qt - low popcon, reduce archive bloat
* Fix vcs-field-not-canonical
* debian/compat -> 9
* Update Description:

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set(plugin_SRCS
 
2
  freedbimportplugin.cpp
 
3
  freedbimporter.cpp
 
4
  tracktypeimporter.cpp
 
5
  freedbconfig.cpp
 
6
)
 
7
 
 
8
set(plugin_MOC_HDRS
 
9
  freedbimportplugin.h
 
10
)
 
11
 
 
12
set(plugin_NAME FreedbImport)
 
13
 
 
14
if (WITH_GCC_PCH)
 
15
  add_definitions(${GCC_PCH_COMPILE_FLAGS})
 
16
endif (WITH_GCC_PCH)
 
17
 
 
18
string(TOLOWER ${plugin_NAME} plugin_TARGET)
 
19
 
 
20
qt4_wrap_cpp(plugin_GEN_MOC_SRCS ${plugin_MOC_HDRS})
 
21
 
 
22
add_library(${plugin_TARGET} ${plugin_SRCS} ${plugin_GEN_MOC_SRCS})
 
23
target_link_libraries(${plugin_TARGET} kid3-core ${BASIC_LIBRARIES})
 
24
 
 
25
INSTALL_KID3_PLUGIN(${plugin_TARGET} ${plugin_NAME})