2011-01-16 17:43:34 +01:00
|
|
|
function(install_script_files scriptname)
|
|
|
|
if(APPLE)
|
2011-01-16 18:26:25 +01:00
|
|
|
install(FILES ${ARGN} DESTINATION ${CMAKE_BINARY_DIR}/clementine.app/Contents/Resources/scripts/${scriptname}/)
|
2011-01-16 17:43:34 +01:00
|
|
|
else(APPLE)
|
|
|
|
install(FILES ${ARGN} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/clementine/scripts/${scriptname}/)
|
|
|
|
endif(APPLE)
|
|
|
|
endfunction(install_script_files)
|
|
|
|
|
|
|
|
add_subdirectory(digitallyimported-radio)
|
2011-01-17 00:46:58 +01:00
|
|
|
add_subdirectory(remove-duplicates)
|