mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 18:58:55 +01:00
a883630ab3
fix a scripting crash when one native object was registered more than once veto mechanism for inserting songs into playlist
11 lines
415 B
CMake
11 lines
415 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)
|