diff options
author | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2009-08-21 18:10:24 +0200 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2009-08-21 18:10:24 +0200 |
commit | 83ba73a034583165d03873e8c3098397fc9ae5e8 (patch) | |
tree | 07362b3379559c3fd6ac8758b4b01b7afea82360 /src/CMakeLists.txt | |
parent | ed2a3a0cfe5e765c9bc54989fd9ed9eeeced3f0f (diff) | |
download | pianobar-83ba73a034583165d03873e8c3098397fc9ae5e8.tar.gz pianobar-83ba73a034583165d03873e8c3098397fc9ae5e8.tar.bz2 pianobar-83ba73a034583165d03873e8c3098397fc9ae5e8.zip |
Fix build with missing libmad/libfaad
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 77e4b65..241622b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -65,8 +65,8 @@ include_directories ( add_executable (pianobar main.c terminal.c settings.c player.c ui.c ui_act.c ui_readline.c) -target_link_libraries (pianobar piano wardrobe waitress ${FAAD_LIBRARY} - ${LIBAO_LIBRARY} ${CMAKE_THREAD_LIBS_INIT} ${MAD_LIBRARIES} ${LIBM}) +target_link_libraries (pianobar piano wardrobe waitress ${FAAD_LIBRARIES} + ${LIBAO_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${MAD_LIBRARIES} ${LIBM}) install (TARGETS pianobar RUNTIME DESTINATION bin) install (FILES pianobar.1 DESTINATION share/man/man1) |