mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-16 03:09:57 +01:00
3db00fc339
also: this action will "ungrey" songs that were deleted but got restored SIPs
12 lines
452 B
CMake
12 lines
452 B
CMake
function(install_script_files scriptname)
|
|
if(APPLE)
|
|
install(FILES ${ARGN} DESTINATION ${CMAKE_BINARY_DIR}/clementine.app/Contents/Resources/scripts/${scriptname}/)
|
|
else(APPLE)
|
|
install(FILES ${ARGN} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/clementine/scripts/${scriptname}/)
|
|
endif(APPLE)
|
|
endfunction(install_script_files)
|
|
|
|
add_subdirectory(digitallyimported-radio)
|
|
add_subdirectory(remove-duplicates)
|
|
add_subdirectory(invalidate-deleted)
|