~ubuntu-branches/ubuntu/wily/pianobar/wily-proposed

« back to all changes in this revision

Viewing changes to libpiano/src/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Luke Faraone
  • Date: 2010-10-07 09:15:49 UTC
  • mfrom: (1.3.1 upstream) (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101007091549-sscxdr1kud0d4hyl
Tags: 2010.10.07-1
* New upstream version. 
  - XMLRPC api version bump (v28) (closes: #599338)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set (CMAKE_C_FLAGS -Wall)
2
 
 
3
 
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/config.h.in
4
 
        ${CMAKE_CURRENT_BINARY_DIR}/config.h)
5
 
 
6
 
include_directories (${CMAKE_CURRENT_SOURCE_DIR}/../../libwaitress/src
7
 
        ${CMAKE_CURRENT_BINARY_DIR}
8
 
        ${CMAKE_CURRENT_SOURCE_DIR}/../../libezxml/src)
9
 
 
10
 
add_library (piano STATIC crypt.c piano.c xml.c)
11
 
target_link_libraries (piano waitress ezxml)
12