~ubuntu-branches/ubuntu/maverick/libmpc/maverick

« back to all changes in this revision

Viewing changes to mpcchap/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-10-20 20:08:39 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20091020200839-sr97yyqrmahl62a4
Tags: upstream-0.1~r453
Import upstream version 0.1~r453

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
add_executable(mpcchap mpcchap dictionary iniparser ${libmpc_SOURCE_DIR}/common/tags)
16
16
 
17
 
target_link_libraries(mpcchap mpcdec_static)
 
17
if(SHARED)
 
18
  target_link_libraries(mpcchap mpcdec_shared)
 
19
else(SHARED)
 
20
  target_link_libraries(mpcchap mpcdec_static)
 
21
endif(SHARED)
 
22
 
18
23
target_link_libraries(mpcchap mpcenc_static)
19
24
target_link_libraries(mpcchap ${CUEFILE_LIBRARY})
20
25
 
22
27
target_link_libraries(mpcchap m)
23
28
endif(NOT MSVC)
24
29
 
 
30
install(TARGETS mpcchap RUNTIME DESTINATION bin)