Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scanner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,7 @@ if(GLIB20_FOUND AND GTHREAD20_FOUND AND NOT DISABLE_GLIB20)
set_property(TARGET loudness APPEND PROPERTY
COMPILE_DEFINITIONS "USE_TAGLIB")
endif()

install(TARGETS scanner-lib DESTINATION lib)
install(TARGETS loudness DESTINATION bin)
endif()
2 changes: 1 addition & 1 deletion scanner/filetree
Submodule filetree updated 1 files
+2 −0 CMakeLists.txt
2 changes: 2 additions & 0 deletions scanner/inputaudio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ if(GMODULE20_FOUND AND NOT DISABLE_GLIB20)
add_library(input input)

target_link_libraries(input ${GMODULE20_LIBRARIES})

install(TARGETS input DESTINATION lib)
endif()
1 change: 1 addition & 0 deletions scanner/inputaudio/ffmpeg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,5 @@ if(LIBAVFORMAT_FOUND AND GMODULE20_FOUND AND
set_target_properties(input_ffmpeg PROPERTIES
LINK_FLAGS ${INPUT_FFMPEG_LDFLAGS})
endif()
install(TARGETS input_ffmpeg DESTINATION lib)
endif()
1 change: 1 addition & 0 deletions scanner/inputaudio/gstreamer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ if(GMODULE20_FOUND AND GSTREAMER_FOUND AND
set_target_properties(input_gstreamer PROPERTIES
COMPILE_FLAGS ${INPUT_GSTREAMER_CFLAGS}
LINK_FLAGS ${INPUT_GSTREAMER_LDFLAGS})
install(TARGETS input_gstreamer DESTINATION lib)
endif()
1 change: 1 addition & 0 deletions scanner/inputaudio/mpg123/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ if(GMODULE20_FOUND AND MPG123_FOUND AND
set_target_properties(input_mpg123 PROPERTIES
COMPILE_FLAGS ${INPUT_MPG123_CFLAGS}
LINK_FLAGS ${INPUT_MPG123_LDFLAGS})
install(TARGETS input_mpg123 DESTINATION lib)
endif()
1 change: 1 addition & 0 deletions scanner/inputaudio/sndfile/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ if(GMODULE20_FOUND AND SNDFILE_FOUND AND
set_target_properties(input_sndfile PROPERTIES
LINK_FLAGS ${INPUT_SNDFILE_LDFLAGS})
endif()
install(TARGETS input_sndfile DESTINATION lib)
endif()
1 change: 1 addition & 0 deletions scanner/scanner-common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ endif()
if(SUMMARY_SPEEXDSP_FOUND AND NOT DISABLE_SPEEXDSP)
add_definitions(-DUSE_SPEEX_RESAMPLER)
endif()
install(TARGETS scanner-common DESTINATION lib)
2 changes: 2 additions & 0 deletions scanner/scanner-drop-gtk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,7 @@ if(TARGET scanner-tag)
${GLIB20_LIBRARIES}
${GTHREAD20_LIBRARIES}
${RSVG2_LIBRARIES})

install(TARGETS loudness-drop-gtk DESTINATION bin)
endif()
endif()
2 changes: 2 additions & 0 deletions scanner/scanner-drop-qt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ if(TARGET scanner-tag)
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
${QT_QTSVG_LIBRARY})

install(TARGETS loudness-drop-qt DESTINATION bin)
endif()
endif()
2 changes: 2 additions & 0 deletions scanner/scanner-tag/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ if(TAGLIB_FOUND AND NOT DISABLE_TAGLIB)
add_library(scanner-tag scanner-tag rgtag)
include_directories(${TAGLIB_INCLUDE_DIRS})
target_link_libraries(scanner-tag scanner-common ${TAGLIB_LIBRARIES})
install(TARGETS scanner-tag DESTINATION lib)
endif()