~ubuntu-branches/ubuntu/oneiric/libmpc/oneiric

« back to all changes in this revision

Viewing changes to mpc2sv8/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-10-20 20:08:39 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20091020200839-d5789g0c5ghi5pdr
Tags: 2:0.1~r453-1
* New upstream SVN snapshot:
  + debian/patches/01_no-mpcchap.patch:
    - Dropped, not necessary anymore.
  + debian/patches/02_link-libm.patch:
    - Updated to apply cleanly again.
* Upload to unstable.
* debian/control:
  + Updated Standards-Version to 3.8.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
add_executable(mpc2sv8 mpc2sv8.c)
14
14
 
15
 
target_link_libraries(mpc2sv8 mpcdec_static)
 
15
if(SHARED)
 
16
  target_link_libraries(mpc2sv8 mpcdec_shared)
 
17
else(SHARED)
 
18
  target_link_libraries(mpc2sv8 mpcdec_static)
 
19
endif(SHARED)
 
20
 
16
21
target_link_libraries(mpc2sv8 mpcenc_static)
17
22
 
18
23
if(WIN32)
27
32
target_link_libraries(mpc2sv8 ossaudio)
28
33
endif(CMAKE_SYSTEM_NAME STREQUAL OpenBSD)
29
34
 
 
35
install(TARGETS mpc2sv8 RUNTIME DESTINATION bin)