Warning, /multimedia/kid3/src/qml/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # Make sure to keep this in sync with qmlapp.qrc
0002 set(QMLAPP_QML_SOURCES
0003   app/AboutDialog.qml
0004   app/AbstractSettingsPage.qml
0005   app/BatchImportPage.qml
0006   app/Collapsible.qml
0007   app/Empty.qml
0008   app/FileCollapsible.qml
0009   app/FileList.qml
0010   app/FileSelectDialog.qml
0011   app/FilterPage.qml
0012   app/FrameDelegate.qml
0013   app/FrameEditDialog.qml
0014   app/FrameSelectDialog.qml
0015   app/IconButton.qml
0016   app/ImportProfilesEditPage.qml
0017   app/Main.qml
0018   app/MainPage.qml
0019   app/MapEditPage.qml
0020   app/MessageDialog.qml
0021   app/NumberTracksDialog.qml
0022   app/PictureCollapsible.qml
0023   app/RenameDirectoryPage.qml
0024   app/ScaledImage.qml
0025   app/SettingsElement.qml
0026   app/SettingsItem.qml
0027   app/SettingsPage.qml
0028   app/Standard.qml
0029   app/StringListEditPage.qml
0030   app/TagCollapsible.qml
0031   app/ThinDivider.qml
0032   app/UiConstants.qml
0033   CACHE INTERNAL ""
0034 )
0035 if(NOT HAVE_QMLDIR_IN_QRC)
0036   # Before starting Qt Creator, export the environment variable
0037   # QML_IMPORT_PATH=<qtdir>/qml:<qtdir>/imports
0038   # so that the editor supports the QML types.
0039   # On Linux, this can be done in ~/.xsessionrc.
0040   install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/script
0041           DESTINATION ${WITH_QMLDIR}
0042           FILES_MATCHING PATTERN "*.qml" PATTERN "*.js")
0043 
0044   if(BUILD_QML_APP)
0045     install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/app
0046             DESTINATION ${WITH_QMLDIR}
0047             FILES_MATCHING PATTERN "*.qml" PATTERN "*.js")
0048     install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/icons
0049             DESTINATION ${WITH_QMLDIR}
0050             FILES_MATCHING PATTERN "*.ttf" PATTERN "triangle_*.svg")
0051   endif()
0052 
0053   # Only used to add the QML sources to the project.
0054   add_custom_target(qml-sources SOURCES
0055     script/ReplayGain2SoundCheck.qml
0056     script/ResizeAlbumArt.qml
0057     script/QmlConsole.qml
0058     script/ShowTextEncodingV1.qml
0059     script/ExportCsv.qml
0060     script/ImportCsv.qml
0061     script/ExportJson.qml
0062     script/ImportJson.qml
0063     script/ExtractAlbumArt.qml
0064     script/EmbedAlbumArt.qml
0065     script/EmbedLyrics.qml
0066     script/ExportPlaylist.qml
0067     script/TitleCase.qml
0068     script/Tag1ToAscii.qml
0069     script/RewriteTags.qml
0070     script/FixId3v2StandardViolations.qml
0071   )
0072   if(BUILD_QML_APP)
0073     # Only used to add the QML sources to the project.
0074     add_custom_target(qmlapp-sources SOURCES ${QMLAPP_QML_SOURCES})
0075   endif()
0076 endif()