Warning, /multimedia/amarok/utilities/collectionscanner/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 
0002 ########### next target ###############
0003 
0004 set(amarokcollectionscanner_SRCS
0005     CollectionScanner.cpp
0006 )
0007 
0008 add_executable(amarokcollectionscanner ${amarokcollectionscanner_SRCS} ${libchardet_SRCS})
0009 
0010 target_link_libraries(amarokcollectionscanner
0011     Qt5::Core
0012     amarokshared
0013 )
0014 
0015 if(APPLE)
0016     set_target_properties(amarokcollectionscanner PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
0017     # install to app bundle on os x, otherwise amarok fails to load it
0018     install(TARGETS amarokcollectionscanner DESTINATION ${KDE_INSTALL_BUNDLEDIR}/amarok.app/Contents/MacOS )
0019 else()
0020     install(TARGETS amarokcollectionscanner RUNTIME DESTINATION ${KDE_INSTALL_BINDIR} )
0021 endif()