├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── CMakeLists.txt ├── COPYING-CMAKE-SCRIPTS ├── ECMConfig.cmake.in ├── LICENSES ├── BSD-2-Clause.txt ├── BSD-3-Clause.txt ├── CC0-1.0.txt └── MIT.txt ├── README.md ├── README.rst ├── cmake └── FindSphinx.cmake ├── docs ├── CMakeLists.txt ├── find-module │ ├── Find7Zip.rst │ ├── Find7z.rst │ ├── FindCanberra.rst │ ├── FindEGL.rst │ ├── FindFFmpeg.rst │ ├── FindGLIB2.rst │ ├── FindGperf.rst │ ├── FindGradle.rst │ ├── FindIcoTool.rst │ ├── FindInotify.rst │ ├── FindIsoCodes.rst │ ├── FindKF5.rst │ ├── FindLibExiv2.rst │ ├── FindLibGit2.rst │ ├── FindLibMount.rst │ ├── FindLibcap.rst │ ├── FindOpenEXR.rst │ ├── FindPhoneNumber.rst │ ├── FindPoppler.rst │ ├── FindPulseAudio.rst │ ├── FindQtWaylandScanner.rst │ ├── FindSasl2.rst │ ├── FindSeccomp.rst │ ├── FindSharedMimeInfo.rst │ ├── FindTaglib.rst │ ├── FindUDev.rst │ ├── FindWayland.rst │ ├── FindWaylandProtocols.rst │ ├── FindWaylandScanner.rst │ ├── FindX11_XCB.rst │ ├── FindXCB.rst │ ├── Findepoxy.rst │ └── Findgzip.rst ├── index.rst ├── kde-module │ ├── KDECMakeSettings.rst │ ├── KDEClangFormat.rst │ ├── KDECompilerSettings.rst │ ├── KDEFrameworkCompilerSettings.rst │ ├── KDEGitCommitHooks.rst │ ├── KDEInstallDirs.rst │ ├── KDEInstallDirs5.rst │ ├── KDEInstallDirs6.rst │ ├── KDEMetaInfoPlatformCheck.rst │ └── KDEPackageAppTemplates.rst ├── manual │ ├── ecm-developer.7.rst │ ├── ecm-find-modules.7.rst │ ├── ecm-kde-modules.7.rst │ ├── ecm-modules.7.rst │ ├── ecm-toolchains.7.rst │ └── ecm.7.rst ├── module │ ├── CheckAtomic.rst │ ├── ECMAddAndroidApk.rst │ ├── ECMAddAppIcon.rst │ ├── ECMAddQch.rst │ ├── ECMAddQtDesignerPlugin.rst │ ├── ECMAddTests.rst │ ├── ECMCheckOutboundLicense.rst │ ├── ECMConfiguredInstall.rst │ ├── ECMCoverageOption.rst │ ├── ECMCreateQmFromPoFiles.rst │ ├── ECMDeprecationSettings.rst │ ├── ECMEnableSanitizers.rst │ ├── ECMFeatureSummary.rst │ ├── ECMFindModuleHelpers.rst │ ├── ECMFindQmlModule.rst │ ├── ECMGenerateDBusServiceFile.rst │ ├── ECMGenerateExportHeader.rst │ ├── ECMGenerateHeaders.rst │ ├── ECMGeneratePkgConfigFile.rst │ ├── ECMGeneratePriFile.rst │ ├── ECMGeneratePythonBindings.rst │ ├── ECMGenerateQDoc.rst │ ├── ECMGenerateQmlTypes.rst │ ├── ECMInstallIcons.rst │ ├── ECMMarkAsTest.rst │ ├── ECMMarkNonGuiExecutable.rst │ ├── ECMOptionalAddSubdirectory.rst │ ├── ECMPackageConfigHelpers.rst │ ├── ECMPoQmTools.rst │ ├── ECMQmlModule.rst │ ├── ECMQtDeclareLoggingCategory.rst │ ├── ECMQueryQt.rst │ ├── ECMSetupQtPluginMacroNames.rst │ ├── ECMSetupVersion.rst │ ├── ECMSourceVersionControl.rst │ ├── ECMUninstallTarget.rst │ ├── ECMUseFindModules.rst │ ├── ECMWinResolveSymlinks.rst │ └── QtVersionOption.rst ├── sphinx │ ├── .gitignore │ ├── conf.py.in │ ├── ecm.css.in │ ├── ext │ │ └── ecm.py │ └── kde-favicon.ico └── toolchain │ └── Android.rst ├── find-modules ├── ECMFindModuleHelpersStub.cmake ├── Find7Zip.cmake ├── Find7z.cmake ├── FindCanberra.cmake ├── FindEGL.cmake ├── FindFFmpeg.cmake ├── FindGLIB2.cmake ├── FindGperf.cmake ├── FindGradle.cmake ├── FindIcoTool.cmake ├── FindInotify.cmake ├── FindIsoCodes.cmake ├── FindKF5.cmake ├── FindKF6.cmake ├── FindLibExiv2.cmake ├── FindLibGit2.cmake ├── FindLibMount.cmake ├── FindLibcap.cmake ├── FindOpenEXR.cmake ├── FindPhoneNumber.cmake ├── FindPoppler.cmake ├── FindPulseAudio.cmake ├── FindQHelpGenerator.cmake ├── FindQtWaylandScanner.cmake ├── FindReuseTool.cmake ├── FindSasl2.cmake ├── FindSeccomp.cmake ├── FindSharedMimeInfo.cmake ├── FindTaglib.cmake ├── FindUDev.cmake ├── FindWayland.cmake ├── FindWaylandProtocols.cmake ├── FindWaylandScanner.cmake ├── FindX11_XCB.cmake ├── FindXCB.cmake ├── Findepoxy.cmake ├── Findgzip.cmake ├── local.properties.cmake └── settings.gradle.cmake ├── kde-modules ├── KDECMakeSettings.cmake ├── KDEClangFormat.cmake ├── KDECompilerSettings.cmake ├── KDEFrameworkCompilerLegacySettings.cmake ├── KDEFrameworkCompilerSettings.cmake ├── KDEGitCommitHooks.cmake ├── KDEInstallDirs.cmake ├── KDEInstallDirs5.cmake ├── KDEInstallDirs6.cmake ├── KDEInstallDirsCommon.cmake ├── KDEMetaInfoPlatformCheck.cmake ├── KDEPackageAppTemplates.cmake ├── KDESetupPrefixScript.cmake ├── appstreamtest.cmake ├── clang-format.cmake ├── kde-git-commit-hooks │ ├── clang-format.sh │ ├── combined.schema.json.in │ ├── combined.schema.json.in.license │ ├── json-schema.py │ └── pre-commit.in ├── prefix.sh.cmake └── prefix.sh.fish.cmake ├── metainfo.yaml ├── modules ├── CheckAtomic.cmake ├── ECMAddAndroidApk.cmake ├── ECMAddAppIcon.cmake ├── ECMAddQch.cmake ├── ECMAddQtDesignerPlugin.cmake ├── ECMAddTests.cmake ├── ECMCheckOutboundLicense.cmake ├── ECMConfiguredInstall.cmake ├── ECMCoverageOption.cmake ├── ECMCreateQmFromPoFiles.cmake ├── ECMDeprecationSettings.cmake ├── ECMEnableSanitizers.cmake ├── ECMFeatureSummary.cmake ├── ECMFindModuleHelpers.cmake ├── ECMFindQmlModule.cmake ├── ECMFindQmlModule.cmake.in ├── ECMGenerateDBusServiceFile.cmake ├── ECMGenerateExportHeader.cmake ├── ECMGenerateHeaders.cmake ├── ECMGeneratePkgConfigFile.cmake ├── ECMGeneratePriFile.cmake ├── ECMGeneratePythonBindings.cmake ├── ECMGeneratePythonBindings.toml.in ├── ECMGeneratePythonBindings.toml.in.license ├── ECMGenerateQDoc.cmake ├── ECMGenerateQmlTypes.cmake ├── ECMInstallIcons.cmake ├── ECMMarkAsTest.cmake ├── ECMMarkNonGuiExecutable.cmake ├── ECMOptionalAddSubdirectory.cmake ├── ECMPackageConfigHelpers.cmake ├── ECMPoQmTools.cmake ├── ECMQMLModules.cmake ├── ECMQchDoxygen.config.in ├── ECMQchDoxygenLayout.xml ├── ECMQmLoader.cpp.in ├── ECMQmlModule.cmake ├── ECMQmlModule.cpp.in ├── ECMQmlModule.cpp.in.license ├── ECMQmlModule.h.in ├── ECMQmlModule.h.in.license ├── ECMQmlModule5.cmake ├── ECMQmlModule6.cmake ├── ECMQtDeclareLoggingCategory.cmake ├── ECMQtDeclareLoggingCategory.cpp.in ├── ECMQtDeclareLoggingCategory.h.in ├── ECMQueryQmake.cmake ├── ECMQueryQt.cmake ├── ECMSetupQtPluginMacroNames.cmake ├── ECMSetupVersion.cmake ├── ECMSourceVersionControl.cmake ├── ECMUninstallTarget.cmake ├── ECMUseFindModules.cmake ├── ECMVersionHeader.h.in ├── ECMWinResolveSymlinks.cmake ├── QtVersionOption.cmake ├── check-outbound-license.py └── ecm_uninstall.cmake.in ├── test-modules └── test_execute_and_compare.cmake ├── tests ├── CMakeLists.txt ├── ECMAddAppIconTest │ ├── 128-category-name-sidebar.png │ ├── 128-category-name.png │ ├── 16-category-name-sidebar.png │ ├── 16-category-name.png │ ├── CMakeLists.txt │ ├── check_files.cmake.in │ └── main.cpp ├── ECMAddTests │ ├── CMakeLists.txt │ ├── check_files.cmake │ ├── multi_tests │ │ ├── CMakeLists.txt │ │ ├── test1.cpp │ │ ├── test10.cpp │ │ ├── test11.cpp │ │ ├── test12.cpp │ │ ├── test13.cpp │ │ ├── test14.cpp │ │ ├── test15.cpp │ │ ├── test2.cpp │ │ ├── test3.cpp │ │ ├── test4.cpp │ │ ├── test5.cpp │ │ ├── test6.cpp │ │ ├── test7.cpp │ │ ├── test8.cpp │ │ └── test9.cpp │ ├── single_tests │ │ ├── CMakeLists.txt │ │ ├── test1.cpp │ │ ├── test2.cpp │ │ ├── test3.cpp │ │ ├── test4.cpp │ │ ├── test5.cpp │ │ ├── test6.cpp │ │ ├── test6body.cpp │ │ ├── test7.cpp │ │ ├── test8.cpp │ │ └── test9.cpp │ ├── testhelper.cpp │ └── testhelper.h ├── ECMCheckOutboundLicenseTest │ ├── CMakeLists.txt │ ├── run_test.cmake.config │ └── testdata │ │ ├── BSD-2-Clause.cpp │ │ ├── GPL-2.0-only.cpp │ │ ├── GPL-2.0-or-later.cpp │ │ ├── GPL-3.0-only.cpp │ │ ├── LGPL-2.1-or-later.cpp │ │ └── LGPL-3.0-only.cpp ├── ECMConfiguredInstallTest │ ├── CMakeLists.txt │ ├── check_tree.cmake.in │ ├── configured.txt │ ├── configured_atOnly.txt.in │ ├── expected │ │ ├── configured.txt │ │ ├── configured_atOnly.txt │ │ ├── multi1.txt │ │ └── multi2.txt │ ├── multi1.txt.in │ └── multi2.txt.in ├── ECMFindQmlModuleTest │ ├── CMakeLists.txt │ ├── main.c │ └── qmlinstall │ │ └── org │ │ └── kde │ │ └── ecmtest │ │ ├── Dummy.qml │ │ └── qmldir ├── ECMGenerateDBusServiceFileTest │ ├── CMakeLists.txt │ ├── check_tree.cmake.in │ ├── expected │ │ ├── org.kde.kded5.service │ │ └── org.kde.kded5.withSystemD.renamed.service │ └── windowsexpected │ │ ├── org.kde.kded5.service │ │ └── org.kde.kded5.withSystemD.renamed.service ├── ECMGenerateExportHeaderTest │ ├── CMakeLists.txt │ ├── consumer │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── testAPI_DISABLE_DEPRECATED_BEFORE_AND_AT.cmake │ │ └── testAPI_NO_DEPRECATED.cmake │ ├── format_version │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── library │ │ ├── CMakeLists.txt │ │ ├── library.cpp │ │ ├── library.hpp │ │ └── main.cpp ├── ECMGenerateHeadersTest │ ├── CMakeLists.txt │ ├── CamelCaseHeadTest1.h │ ├── CamelCaseHeadTest2.h │ ├── CommonHeader │ ├── headsubdir │ │ ├── headtest2.h │ │ └── headtest3.h │ ├── headtest1.h │ ├── headtest1.hpp │ ├── headtest2.h │ ├── headtest2.hpp │ ├── headtest4.h │ └── run_test.cmake.config ├── ECMGeneratePkgConfigFile │ ├── CMakeLists.txt │ ├── KF5CoreAddons.pc │ ├── KF5CoreAddons2.pc │ ├── KF5CoreAddons3.pc │ ├── KF5CoreAddons4.pc │ ├── KF5CoreAddons5.pc │ ├── KF6Attica.pc │ ├── custom_defines │ │ └── CMakeLists.txt │ ├── metainfo_with_description.yaml │ ├── metainfo_with_empty_description.yaml │ ├── metainfo_without_description.yaml │ ├── no_description_parameter_metainfo_with_description-param │ │ └── CMakeLists.txt │ ├── no_description_parameter_metainfo_with_empty_description │ │ └── CMakeLists.txt │ ├── no_description_parameter_metainfo_without_description │ │ └── CMakeLists.txt │ ├── no_optional_arguments │ │ └── CMakeLists.txt │ ├── test-and-comparison-helpers.cmake │ ├── test_imported_targets │ │ ├── CMakeLists.txt │ │ ├── EGPF_imported_include_dirs_control.pc │ │ └── main.cpp │ ├── test_no_interface_include_dirs │ │ ├── CMakeLists.txt │ │ ├── EGPF_no_interface_include_directories.pc │ │ └── main.cpp │ ├── with_an_URL_parameter │ │ └── CMakeLists.txt │ └── with_public_and_private_dependencies │ │ └── CMakeLists.txt ├── ECMInstallIconsTest │ ├── 128-devices-drive-removable-media-usb-pendrive.png │ ├── 128-emblems-emblem-mounted.png │ ├── 128-places-home.mng │ ├── 16-actions-badext.txt │ ├── 16-actions-computer.png │ ├── 16-animations-loading.mng │ ├── 16-categories-system-help.mng │ ├── 16-emotes-face-smile.png │ ├── 16-intl-something.png │ ├── 16-status-user-online.png │ ├── CMakeLists.txt │ ├── aa-actions-badsize.png │ ├── badlynamedfile.png │ ├── check_tree.cmake.in │ ├── expected-tree │ │ ├── badly-named-files-test │ │ │ └── hicolor │ │ │ │ ├── 16x16 │ │ │ │ └── actions │ │ │ │ │ ├── badext.txt │ │ │ │ │ └── old-style-name.png │ │ │ │ └── icon-theme.cache │ │ ├── lang-test │ │ │ └── hicolor │ │ │ │ ├── 128x128 │ │ │ │ ├── devices │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── drive-removable-media-usb-pendrive.png │ │ │ │ ├── emblems │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── emblem-mounted.png │ │ │ │ └── places │ │ │ │ │ └── l10n │ │ │ │ │ └── en_US │ │ │ │ │ └── home.mng │ │ │ │ ├── 16x16 │ │ │ │ ├── actions │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── computer.png │ │ │ │ ├── animations │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── loading.mng │ │ │ │ ├── apps │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── cmake.png │ │ │ │ ├── categories │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── system-help.mng │ │ │ │ ├── emotes │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── face-smile.png │ │ │ │ ├── intl │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── something.png │ │ │ │ └── status │ │ │ │ │ └── l10n │ │ │ │ │ └── en_US │ │ │ │ │ └── user-online.png │ │ │ │ ├── icon-theme.cache │ │ │ │ └── scalable │ │ │ │ └── mimetypes │ │ │ │ └── l10n │ │ │ │ └── en_US │ │ │ │ └── fonts-package.svgz │ │ ├── multi-file-test │ │ │ └── hicolor │ │ │ │ ├── 128x128 │ │ │ │ ├── devices │ │ │ │ │ └── drive-removable-media-usb-pendrive.png │ │ │ │ ├── emblems │ │ │ │ │ └── emblem-mounted.png │ │ │ │ └── places │ │ │ │ │ └── home.mng │ │ │ │ ├── 16x16 │ │ │ │ ├── actions │ │ │ │ │ └── computer.png │ │ │ │ ├── animations │ │ │ │ │ └── loading.mng │ │ │ │ ├── apps │ │ │ │ │ └── cmake.png │ │ │ │ ├── categories │ │ │ │ │ └── system-help.mng │ │ │ │ ├── emotes │ │ │ │ │ └── face-smile.png │ │ │ │ ├── intl │ │ │ │ │ └── something.png │ │ │ │ └── status │ │ │ │ │ └── user-online.png │ │ │ │ ├── icon-theme.cache │ │ │ │ └── scalable │ │ │ │ └── mimetypes │ │ │ │ └── fonts-package.svgz │ │ ├── single-file-test │ │ │ └── hicolor │ │ │ │ ├── 16x16 │ │ │ │ └── actions │ │ │ │ │ └── computer.png │ │ │ │ └── icon-theme.cache │ │ ├── themed-lang-test │ │ │ └── oxygen │ │ │ │ ├── 128x128 │ │ │ │ ├── devices │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── drive-removable-media-usb-pendrive.png │ │ │ │ ├── emblems │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── emblem-mounted.png │ │ │ │ └── places │ │ │ │ │ └── l10n │ │ │ │ │ └── en_US │ │ │ │ │ └── home.mng │ │ │ │ ├── 16x16 │ │ │ │ ├── actions │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── computer.png │ │ │ │ ├── animations │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── loading.mng │ │ │ │ ├── apps │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── cmake.png │ │ │ │ ├── categories │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── system-help.mng │ │ │ │ ├── emotes │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── face-smile.png │ │ │ │ ├── intl │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── something.png │ │ │ │ └── status │ │ │ │ │ └── l10n │ │ │ │ │ └── en_US │ │ │ │ │ └── user-online.png │ │ │ │ ├── icon-theme.cache │ │ │ │ └── scalable │ │ │ │ └── mimetypes │ │ │ │ └── l10n │ │ │ │ └── en_US │ │ │ │ └── fonts-package.svgz │ │ ├── themed-test │ │ │ └── theme-name-2 │ │ │ │ ├── 128x128 │ │ │ │ ├── devices │ │ │ │ │ └── drive-removable-media-usb-pendrive.png │ │ │ │ ├── emblems │ │ │ │ │ └── emblem-mounted.png │ │ │ │ └── places │ │ │ │ │ └── home.mng │ │ │ │ ├── 16x16 │ │ │ │ ├── actions │ │ │ │ │ └── computer.png │ │ │ │ ├── animations │ │ │ │ │ └── loading.mng │ │ │ │ ├── apps │ │ │ │ │ └── cmake.png │ │ │ │ ├── categories │ │ │ │ │ └── system-help.mng │ │ │ │ ├── emotes │ │ │ │ │ └── face-smile.png │ │ │ │ ├── intl │ │ │ │ │ └── something.png │ │ │ │ └── status │ │ │ │ │ └── user-online.png │ │ │ │ ├── icon-theme.cache │ │ │ │ └── scalable │ │ │ │ └── mimetypes │ │ │ │ └── fonts-package.svgz │ │ └── v1-icons │ │ │ ├── crystalsvg │ │ │ ├── 128x128 │ │ │ │ └── emblems │ │ │ │ │ ├── emblem-mounted.png │ │ │ │ │ └── l10n │ │ │ │ │ └── en_US │ │ │ │ │ └── emblem-mounted.png │ │ │ └── icon-theme.cache │ │ │ ├── hicolor │ │ │ ├── 128x128 │ │ │ │ ├── devices │ │ │ │ │ └── drive-removable-media-usb-pendrive.png │ │ │ │ └── places │ │ │ │ │ ├── home.mng │ │ │ │ │ └── l10n │ │ │ │ │ └── en_US │ │ │ │ │ └── home.mng │ │ │ ├── 16x16 │ │ │ │ ├── actions │ │ │ │ │ ├── computer.png │ │ │ │ │ └── l10n │ │ │ │ │ │ └── en_US │ │ │ │ │ │ └── computer.png │ │ │ │ ├── animations │ │ │ │ │ └── loading.mng │ │ │ │ ├── apps │ │ │ │ │ └── cmake.png │ │ │ │ ├── emotes │ │ │ │ │ └── face-smile.png │ │ │ │ ├── intl │ │ │ │ │ └── something.png │ │ │ │ └── status │ │ │ │ │ └── user-online.png │ │ │ └── icon-theme.cache │ │ │ ├── locolor │ │ │ └── scalable │ │ │ │ └── mimetypes │ │ │ │ ├── fonts-package.svgz │ │ │ │ └── l10n │ │ │ │ └── en_US │ │ │ │ └── fonts-package.svgz │ │ │ └── oxygen │ │ │ └── 16x16 │ │ │ └── categories │ │ │ ├── l10n │ │ │ └── en_US │ │ │ │ └── system-help.mng │ │ │ └── system-help.mng │ ├── hi16-actions-old-style-name.png │ ├── sc-mimetypes-fonts-package.svgz │ ├── subdir │ │ └── 16-apps-cmake.png │ ├── v1-syntax-l10n │ │ ├── CMakeLists.txt │ │ ├── cr128-emblems-emblem-mounted.png │ │ ├── hi128-places-home.mng │ │ ├── hi16-actions-computer.png │ │ ├── losc-mimetypes-fonts-package.svgz │ │ └── ox16-categories-system-help.mng │ ├── v1-syntax-no-icons │ │ └── CMakeLists.txt │ └── v1-syntax │ │ ├── CMakeLists.txt │ │ ├── cr128-emblems-emblem-mounted.png │ │ ├── hi128-devices-drive-removable-media-usb-pendrive.png │ │ ├── hi128-places-home.mng │ │ ├── hi16-actions-computer.png │ │ ├── hi16-animations-loading.mng │ │ ├── hi16-apps-cmake.png │ │ ├── hi16-emotes-face-smile.png │ │ ├── hi16-intl-something.png │ │ ├── hi16-status-user-online.png │ │ ├── losc-mimetypes-fonts-package.svgz │ │ └── ox16-categories-system-help.mng ├── ECMPoQmToolsTest │ ├── CMakeLists.txt │ ├── check.cmake.in │ ├── check_conf.cmake.in │ ├── check_conf_static.cmake.in │ ├── only-process.po │ ├── po-custom-dir1 │ │ ├── es │ │ │ └── custom-dir1-install-test.po │ │ └── fr │ │ │ └── custom-dir1-install-test.po │ ├── po-custom-dir2 │ │ ├── es │ │ │ └── custom-dir2-install-test.po │ │ └── fr │ │ │ └── custom-dir2-install-test.po │ ├── po │ │ ├── es │ │ │ └── install-test.po │ │ ├── fr │ │ │ └── install-test.po │ │ ├── no-po │ │ │ └── placeholder │ │ └── should-not-be-installed │ ├── process-and-install.po │ ├── subdir │ │ └── CMakeLists.txt │ ├── tr_test-po │ │ ├── de │ │ │ ├── catalog.po │ │ │ └── catalog2.po │ │ ├── en │ │ │ ├── catalog.po │ │ │ └── catalog2.po │ │ ├── pt │ │ │ └── catalog.po │ │ └── pt_BR │ │ │ └── catalog.po │ ├── tr_test.cpp │ ├── tr_thread_test.cpp │ └── tr_thread_test_module.cpp ├── ECMQmlModuleTest │ ├── CMakeLists.txt │ ├── QmlModule.qml │ ├── QmlModule2.qml │ ├── TestModule_init.cpp │ ├── check.cmake.in │ ├── qmldir_expected_depends_qt5 │ ├── qmldir_expected_depends_qt5.license │ ├── qmldir_expected_depends_qt6 │ ├── qmldir_expected_depends_qt6.license │ ├── qmldir_expected_full_qt5 │ ├── qmldir_expected_full_qt5.license │ ├── qmldir_expected_full_qt6 │ ├── qmldir_expected_full_qt6.license │ ├── qmldir_expected_qmlonly_qt5 │ ├── qmldir_expected_qmlonly_qt5.license │ ├── qmldir_expected_qmlonly_qt6 │ ├── qmldir_expected_qmlonly_qt6.license │ ├── qmlmodule.cpp │ └── qmlmodule.h ├── ECMQtDeclareLoggingCategoryTest │ ├── CMakeLists.txt │ ├── check.cmake.in │ ├── log.categories │ ├── log.renamecategories │ └── testmain.cpp ├── ECMSetupVersionTest │ ├── CMakeLists.txt │ ├── new_explicit_header │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_explicit_header_abspath │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_explicit_simple │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_explicit_simple_no_version_string_vars │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_explicit_soversion │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_explicit_version_file │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_explicit_version_file_abspath │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_header │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_header_abspath │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_header_expected_zero_version │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_header_prefix │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_header_zero_prefixed_version │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_simple │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_simple_no_version_string_vars │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_simple_prefix │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_soversion │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_soversion_prefix │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_version_file │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── new_project_version_file_abspath │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_header │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_header_abspath │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_simple │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_simple_no_version_string_vars │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_soversion │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_version_file │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_version_file_abspath │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_version_file_anynewer │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_version_file_exact │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── old_version_file_samemajor │ │ ├── CMakeLists.txt │ │ └── main.c │ └── version_helpers.cmake ├── ExecuteCoreModules │ ├── CMakeLists.txt │ └── main.c ├── ExecuteKDEModules │ ├── CMakeLists.txt │ └── main.c ├── FindModules │ ├── CMakeLists.txt │ └── main.c ├── KDEFetchTranslations │ └── CMakeLists.txt ├── KDEInstallDirsTest │ ├── not_cache_variable │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── relative_or_absolute │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── var_list.cmake │ └── vars_in_sync │ │ ├── CMakeLists.txt │ │ └── main.c ├── KDEPackageAppTemplatesCrossTest │ ├── CMakeLists.txt │ ├── check.cmake.in │ └── someFile ├── KDEPackageAppTemplatesForcedTest │ ├── CMakeLists.txt │ ├── check.cmake.in │ └── qml-plasmoid │ │ ├── CMakeLists.txt │ │ ├── Messages.sh │ │ ├── README │ │ ├── package │ │ ├── contents │ │ │ ├── images │ │ │ │ └── pairs.svgz │ │ │ └── ui │ │ │ │ └── main.qml │ │ └── metadata.desktop │ │ ├── qml-plasmoid.kdevtemplate │ │ └── qml-plasmoid.png ├── KDEPackageAppTemplatesTest │ ├── CMakeLists.txt │ ├── check.cmake.in │ └── qml-plasmoid │ │ ├── CMakeLists.txt │ │ ├── Messages.sh │ │ ├── README │ │ ├── package │ │ ├── contents │ │ │ ├── images │ │ │ │ └── pairs.svgz │ │ │ └── ui │ │ │ │ └── main.qml │ │ └── metadata.desktop │ │ ├── qml-plasmoid.kdevtemplate │ │ └── qml-plasmoid.png ├── UseFindModules │ ├── CMakeLists.txt │ └── main.c └── test_helpers.cmake └── toolchain ├── Android.cmake ├── ECMAndroidDeployQt5.cmake ├── deployment-file-qt514.json.in ├── deployment-file-qt6.json.in ├── deployment-file-qt6.json.in.license ├── deployment-file.json.in ├── ecm-version.gradle.in ├── generate-fastlane-metadata.py ├── hasMainSymbol.cmake └── specifydependencies.cmake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /ECMConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/ECMConfig.cmake.in -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/README.rst -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/find-module/Find7Zip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/Find7Zip.rst -------------------------------------------------------------------------------- /docs/find-module/Find7z.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/Find7z.rst -------------------------------------------------------------------------------- /docs/find-module/FindCanberra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindCanberra.rst -------------------------------------------------------------------------------- /docs/find-module/FindEGL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindEGL.rst -------------------------------------------------------------------------------- /docs/find-module/FindFFmpeg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindFFmpeg.rst -------------------------------------------------------------------------------- /docs/find-module/FindGLIB2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindGLIB2.rst -------------------------------------------------------------------------------- /docs/find-module/FindGperf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindGperf.rst -------------------------------------------------------------------------------- /docs/find-module/FindGradle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindGradle.rst -------------------------------------------------------------------------------- /docs/find-module/FindIcoTool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindIcoTool.rst -------------------------------------------------------------------------------- /docs/find-module/FindInotify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindInotify.rst -------------------------------------------------------------------------------- /docs/find-module/FindIsoCodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindIsoCodes.rst -------------------------------------------------------------------------------- /docs/find-module/FindKF5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindKF5.rst -------------------------------------------------------------------------------- /docs/find-module/FindLibExiv2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindLibExiv2.rst -------------------------------------------------------------------------------- /docs/find-module/FindLibGit2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindLibGit2.rst -------------------------------------------------------------------------------- /docs/find-module/FindLibMount.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindLibMount.rst -------------------------------------------------------------------------------- /docs/find-module/FindLibcap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindLibcap.rst -------------------------------------------------------------------------------- /docs/find-module/FindOpenEXR.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindOpenEXR.rst -------------------------------------------------------------------------------- /docs/find-module/FindPhoneNumber.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindPhoneNumber.rst -------------------------------------------------------------------------------- /docs/find-module/FindPoppler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindPoppler.rst -------------------------------------------------------------------------------- /docs/find-module/FindPulseAudio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindPulseAudio.rst -------------------------------------------------------------------------------- /docs/find-module/FindQtWaylandScanner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindQtWaylandScanner.rst -------------------------------------------------------------------------------- /docs/find-module/FindSasl2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindSasl2.rst -------------------------------------------------------------------------------- /docs/find-module/FindSeccomp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindSeccomp.rst -------------------------------------------------------------------------------- /docs/find-module/FindSharedMimeInfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindSharedMimeInfo.rst -------------------------------------------------------------------------------- /docs/find-module/FindTaglib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindTaglib.rst -------------------------------------------------------------------------------- /docs/find-module/FindUDev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindUDev.rst -------------------------------------------------------------------------------- /docs/find-module/FindWayland.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindWayland.rst -------------------------------------------------------------------------------- /docs/find-module/FindWaylandProtocols.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindWaylandProtocols.rst -------------------------------------------------------------------------------- /docs/find-module/FindWaylandScanner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindWaylandScanner.rst -------------------------------------------------------------------------------- /docs/find-module/FindX11_XCB.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindX11_XCB.rst -------------------------------------------------------------------------------- /docs/find-module/FindXCB.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/FindXCB.rst -------------------------------------------------------------------------------- /docs/find-module/Findepoxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/Findepoxy.rst -------------------------------------------------------------------------------- /docs/find-module/Findgzip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/find-module/Findgzip.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/kde-module/KDECMakeSettings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDECMakeSettings.rst -------------------------------------------------------------------------------- /docs/kde-module/KDEClangFormat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDEClangFormat.rst -------------------------------------------------------------------------------- /docs/kde-module/KDECompilerSettings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDECompilerSettings.rst -------------------------------------------------------------------------------- /docs/kde-module/KDEFrameworkCompilerSettings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDEFrameworkCompilerSettings.rst -------------------------------------------------------------------------------- /docs/kde-module/KDEGitCommitHooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDEGitCommitHooks.rst -------------------------------------------------------------------------------- /docs/kde-module/KDEInstallDirs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDEInstallDirs.rst -------------------------------------------------------------------------------- /docs/kde-module/KDEInstallDirs5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDEInstallDirs5.rst -------------------------------------------------------------------------------- /docs/kde-module/KDEInstallDirs6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDEInstallDirs6.rst -------------------------------------------------------------------------------- /docs/kde-module/KDEMetaInfoPlatformCheck.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDEMetaInfoPlatformCheck.rst -------------------------------------------------------------------------------- /docs/kde-module/KDEPackageAppTemplates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/kde-module/KDEPackageAppTemplates.rst -------------------------------------------------------------------------------- /docs/manual/ecm-developer.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/manual/ecm-developer.7.rst -------------------------------------------------------------------------------- /docs/manual/ecm-find-modules.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/manual/ecm-find-modules.7.rst -------------------------------------------------------------------------------- /docs/manual/ecm-kde-modules.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/manual/ecm-kde-modules.7.rst -------------------------------------------------------------------------------- /docs/manual/ecm-modules.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/manual/ecm-modules.7.rst -------------------------------------------------------------------------------- /docs/manual/ecm-toolchains.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/manual/ecm-toolchains.7.rst -------------------------------------------------------------------------------- /docs/manual/ecm.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/manual/ecm.7.rst -------------------------------------------------------------------------------- /docs/module/CheckAtomic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/CheckAtomic.rst -------------------------------------------------------------------------------- /docs/module/ECMAddAndroidApk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMAddAndroidApk.rst -------------------------------------------------------------------------------- /docs/module/ECMAddAppIcon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMAddAppIcon.rst -------------------------------------------------------------------------------- /docs/module/ECMAddQch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMAddQch.rst -------------------------------------------------------------------------------- /docs/module/ECMAddQtDesignerPlugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMAddQtDesignerPlugin.rst -------------------------------------------------------------------------------- /docs/module/ECMAddTests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMAddTests.rst -------------------------------------------------------------------------------- /docs/module/ECMCheckOutboundLicense.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMCheckOutboundLicense.rst -------------------------------------------------------------------------------- /docs/module/ECMConfiguredInstall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMConfiguredInstall.rst -------------------------------------------------------------------------------- /docs/module/ECMCoverageOption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMCoverageOption.rst -------------------------------------------------------------------------------- /docs/module/ECMCreateQmFromPoFiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMCreateQmFromPoFiles.rst -------------------------------------------------------------------------------- /docs/module/ECMDeprecationSettings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMDeprecationSettings.rst -------------------------------------------------------------------------------- /docs/module/ECMEnableSanitizers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMEnableSanitizers.rst -------------------------------------------------------------------------------- /docs/module/ECMFeatureSummary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMFeatureSummary.rst -------------------------------------------------------------------------------- /docs/module/ECMFindModuleHelpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMFindModuleHelpers.rst -------------------------------------------------------------------------------- /docs/module/ECMFindQmlModule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMFindQmlModule.rst -------------------------------------------------------------------------------- /docs/module/ECMGenerateDBusServiceFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMGenerateDBusServiceFile.rst -------------------------------------------------------------------------------- /docs/module/ECMGenerateExportHeader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMGenerateExportHeader.rst -------------------------------------------------------------------------------- /docs/module/ECMGenerateHeaders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMGenerateHeaders.rst -------------------------------------------------------------------------------- /docs/module/ECMGeneratePkgConfigFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMGeneratePkgConfigFile.rst -------------------------------------------------------------------------------- /docs/module/ECMGeneratePriFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMGeneratePriFile.rst -------------------------------------------------------------------------------- /docs/module/ECMGeneratePythonBindings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMGeneratePythonBindings.rst -------------------------------------------------------------------------------- /docs/module/ECMGenerateQDoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMGenerateQDoc.rst -------------------------------------------------------------------------------- /docs/module/ECMGenerateQmlTypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMGenerateQmlTypes.rst -------------------------------------------------------------------------------- /docs/module/ECMInstallIcons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMInstallIcons.rst -------------------------------------------------------------------------------- /docs/module/ECMMarkAsTest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMMarkAsTest.rst -------------------------------------------------------------------------------- /docs/module/ECMMarkNonGuiExecutable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMMarkNonGuiExecutable.rst -------------------------------------------------------------------------------- /docs/module/ECMOptionalAddSubdirectory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMOptionalAddSubdirectory.rst -------------------------------------------------------------------------------- /docs/module/ECMPackageConfigHelpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMPackageConfigHelpers.rst -------------------------------------------------------------------------------- /docs/module/ECMPoQmTools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMPoQmTools.rst -------------------------------------------------------------------------------- /docs/module/ECMQmlModule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMQmlModule.rst -------------------------------------------------------------------------------- /docs/module/ECMQtDeclareLoggingCategory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMQtDeclareLoggingCategory.rst -------------------------------------------------------------------------------- /docs/module/ECMQueryQt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMQueryQt.rst -------------------------------------------------------------------------------- /docs/module/ECMSetupQtPluginMacroNames.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMSetupQtPluginMacroNames.rst -------------------------------------------------------------------------------- /docs/module/ECMSetupVersion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMSetupVersion.rst -------------------------------------------------------------------------------- /docs/module/ECMSourceVersionControl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMSourceVersionControl.rst -------------------------------------------------------------------------------- /docs/module/ECMUninstallTarget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMUninstallTarget.rst -------------------------------------------------------------------------------- /docs/module/ECMUseFindModules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMUseFindModules.rst -------------------------------------------------------------------------------- /docs/module/ECMWinResolveSymlinks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/ECMWinResolveSymlinks.rst -------------------------------------------------------------------------------- /docs/module/QtVersionOption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/module/QtVersionOption.rst -------------------------------------------------------------------------------- /docs/sphinx/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /docs/sphinx/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/sphinx/conf.py.in -------------------------------------------------------------------------------- /docs/sphinx/ecm.css.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/sphinx/ecm.css.in -------------------------------------------------------------------------------- /docs/sphinx/ext/ecm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/sphinx/ext/ecm.py -------------------------------------------------------------------------------- /docs/sphinx/kde-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/docs/sphinx/kde-favicon.ico -------------------------------------------------------------------------------- /docs/toolchain/Android.rst: -------------------------------------------------------------------------------- 1 | .. ecm-module:: ../../toolchain/Android.cmake 2 | -------------------------------------------------------------------------------- /find-modules/ECMFindModuleHelpersStub.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/ECMFindModuleHelpersStub.cmake -------------------------------------------------------------------------------- /find-modules/Find7Zip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/Find7Zip.cmake -------------------------------------------------------------------------------- /find-modules/Find7z.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/Find7z.cmake -------------------------------------------------------------------------------- /find-modules/FindCanberra.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindCanberra.cmake -------------------------------------------------------------------------------- /find-modules/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindEGL.cmake -------------------------------------------------------------------------------- /find-modules/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindFFmpeg.cmake -------------------------------------------------------------------------------- /find-modules/FindGLIB2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindGLIB2.cmake -------------------------------------------------------------------------------- /find-modules/FindGperf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindGperf.cmake -------------------------------------------------------------------------------- /find-modules/FindGradle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindGradle.cmake -------------------------------------------------------------------------------- /find-modules/FindIcoTool.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindIcoTool.cmake -------------------------------------------------------------------------------- /find-modules/FindInotify.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindInotify.cmake -------------------------------------------------------------------------------- /find-modules/FindIsoCodes.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindIsoCodes.cmake -------------------------------------------------------------------------------- /find-modules/FindKF5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindKF5.cmake -------------------------------------------------------------------------------- /find-modules/FindKF6.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindKF6.cmake -------------------------------------------------------------------------------- /find-modules/FindLibExiv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindLibExiv2.cmake -------------------------------------------------------------------------------- /find-modules/FindLibGit2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindLibGit2.cmake -------------------------------------------------------------------------------- /find-modules/FindLibMount.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindLibMount.cmake -------------------------------------------------------------------------------- /find-modules/FindLibcap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindLibcap.cmake -------------------------------------------------------------------------------- /find-modules/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindOpenEXR.cmake -------------------------------------------------------------------------------- /find-modules/FindPhoneNumber.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindPhoneNumber.cmake -------------------------------------------------------------------------------- /find-modules/FindPoppler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindPoppler.cmake -------------------------------------------------------------------------------- /find-modules/FindPulseAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindPulseAudio.cmake -------------------------------------------------------------------------------- /find-modules/FindQHelpGenerator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindQHelpGenerator.cmake -------------------------------------------------------------------------------- /find-modules/FindQtWaylandScanner.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindQtWaylandScanner.cmake -------------------------------------------------------------------------------- /find-modules/FindReuseTool.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindReuseTool.cmake -------------------------------------------------------------------------------- /find-modules/FindSasl2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindSasl2.cmake -------------------------------------------------------------------------------- /find-modules/FindSeccomp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindSeccomp.cmake -------------------------------------------------------------------------------- /find-modules/FindSharedMimeInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindSharedMimeInfo.cmake -------------------------------------------------------------------------------- /find-modules/FindTaglib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindTaglib.cmake -------------------------------------------------------------------------------- /find-modules/FindUDev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindUDev.cmake -------------------------------------------------------------------------------- /find-modules/FindWayland.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindWayland.cmake -------------------------------------------------------------------------------- /find-modules/FindWaylandProtocols.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindWaylandProtocols.cmake -------------------------------------------------------------------------------- /find-modules/FindWaylandScanner.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindWaylandScanner.cmake -------------------------------------------------------------------------------- /find-modules/FindX11_XCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindX11_XCB.cmake -------------------------------------------------------------------------------- /find-modules/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/FindXCB.cmake -------------------------------------------------------------------------------- /find-modules/Findepoxy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/Findepoxy.cmake -------------------------------------------------------------------------------- /find-modules/Findgzip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/find-modules/Findgzip.cmake -------------------------------------------------------------------------------- /find-modules/local.properties.cmake: -------------------------------------------------------------------------------- 1 | sdk.dir=@ANDROID_SDK_ROOT@ 2 | -------------------------------------------------------------------------------- /find-modules/settings.gradle.cmake: -------------------------------------------------------------------------------- 1 | rootProject.name = '@ARG_NAME@' 2 | -------------------------------------------------------------------------------- /kde-modules/KDECMakeSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDECMakeSettings.cmake -------------------------------------------------------------------------------- /kde-modules/KDEClangFormat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEClangFormat.cmake -------------------------------------------------------------------------------- /kde-modules/KDECompilerSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDECompilerSettings.cmake -------------------------------------------------------------------------------- /kde-modules/KDEFrameworkCompilerLegacySettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEFrameworkCompilerLegacySettings.cmake -------------------------------------------------------------------------------- /kde-modules/KDEFrameworkCompilerSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEFrameworkCompilerSettings.cmake -------------------------------------------------------------------------------- /kde-modules/KDEGitCommitHooks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEGitCommitHooks.cmake -------------------------------------------------------------------------------- /kde-modules/KDEInstallDirs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEInstallDirs.cmake -------------------------------------------------------------------------------- /kde-modules/KDEInstallDirs5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEInstallDirs5.cmake -------------------------------------------------------------------------------- /kde-modules/KDEInstallDirs6.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEInstallDirs6.cmake -------------------------------------------------------------------------------- /kde-modules/KDEInstallDirsCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEInstallDirsCommon.cmake -------------------------------------------------------------------------------- /kde-modules/KDEMetaInfoPlatformCheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEMetaInfoPlatformCheck.cmake -------------------------------------------------------------------------------- /kde-modules/KDEPackageAppTemplates.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDEPackageAppTemplates.cmake -------------------------------------------------------------------------------- /kde-modules/KDESetupPrefixScript.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/KDESetupPrefixScript.cmake -------------------------------------------------------------------------------- /kde-modules/appstreamtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/appstreamtest.cmake -------------------------------------------------------------------------------- /kde-modules/clang-format.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/clang-format.cmake -------------------------------------------------------------------------------- /kde-modules/kde-git-commit-hooks/clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/kde-git-commit-hooks/clang-format.sh -------------------------------------------------------------------------------- /kde-modules/kde-git-commit-hooks/combined.schema.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/kde-git-commit-hooks/combined.schema.json.in -------------------------------------------------------------------------------- /kde-modules/kde-git-commit-hooks/combined.schema.json.in.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/kde-git-commit-hooks/combined.schema.json.in.license -------------------------------------------------------------------------------- /kde-modules/kde-git-commit-hooks/json-schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/kde-git-commit-hooks/json-schema.py -------------------------------------------------------------------------------- /kde-modules/kde-git-commit-hooks/pre-commit.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/kde-git-commit-hooks/pre-commit.in -------------------------------------------------------------------------------- /kde-modules/prefix.sh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/prefix.sh.cmake -------------------------------------------------------------------------------- /kde-modules/prefix.sh.fish.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/kde-modules/prefix.sh.fish.cmake -------------------------------------------------------------------------------- /metainfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/metainfo.yaml -------------------------------------------------------------------------------- /modules/CheckAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/CheckAtomic.cmake -------------------------------------------------------------------------------- /modules/ECMAddAndroidApk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMAddAndroidApk.cmake -------------------------------------------------------------------------------- /modules/ECMAddAppIcon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMAddAppIcon.cmake -------------------------------------------------------------------------------- /modules/ECMAddQch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMAddQch.cmake -------------------------------------------------------------------------------- /modules/ECMAddQtDesignerPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMAddQtDesignerPlugin.cmake -------------------------------------------------------------------------------- /modules/ECMAddTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMAddTests.cmake -------------------------------------------------------------------------------- /modules/ECMCheckOutboundLicense.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMCheckOutboundLicense.cmake -------------------------------------------------------------------------------- /modules/ECMConfiguredInstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMConfiguredInstall.cmake -------------------------------------------------------------------------------- /modules/ECMCoverageOption.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMCoverageOption.cmake -------------------------------------------------------------------------------- /modules/ECMCreateQmFromPoFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMCreateQmFromPoFiles.cmake -------------------------------------------------------------------------------- /modules/ECMDeprecationSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMDeprecationSettings.cmake -------------------------------------------------------------------------------- /modules/ECMEnableSanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMEnableSanitizers.cmake -------------------------------------------------------------------------------- /modules/ECMFeatureSummary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMFeatureSummary.cmake -------------------------------------------------------------------------------- /modules/ECMFindModuleHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMFindModuleHelpers.cmake -------------------------------------------------------------------------------- /modules/ECMFindQmlModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMFindQmlModule.cmake -------------------------------------------------------------------------------- /modules/ECMFindQmlModule.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMFindQmlModule.cmake.in -------------------------------------------------------------------------------- /modules/ECMGenerateDBusServiceFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGenerateDBusServiceFile.cmake -------------------------------------------------------------------------------- /modules/ECMGenerateExportHeader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGenerateExportHeader.cmake -------------------------------------------------------------------------------- /modules/ECMGenerateHeaders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGenerateHeaders.cmake -------------------------------------------------------------------------------- /modules/ECMGeneratePkgConfigFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGeneratePkgConfigFile.cmake -------------------------------------------------------------------------------- /modules/ECMGeneratePriFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGeneratePriFile.cmake -------------------------------------------------------------------------------- /modules/ECMGeneratePythonBindings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGeneratePythonBindings.cmake -------------------------------------------------------------------------------- /modules/ECMGeneratePythonBindings.toml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGeneratePythonBindings.toml.in -------------------------------------------------------------------------------- /modules/ECMGeneratePythonBindings.toml.in.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGeneratePythonBindings.toml.in.license -------------------------------------------------------------------------------- /modules/ECMGenerateQDoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGenerateQDoc.cmake -------------------------------------------------------------------------------- /modules/ECMGenerateQmlTypes.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMGenerateQmlTypes.cmake -------------------------------------------------------------------------------- /modules/ECMInstallIcons.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMInstallIcons.cmake -------------------------------------------------------------------------------- /modules/ECMMarkAsTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMMarkAsTest.cmake -------------------------------------------------------------------------------- /modules/ECMMarkNonGuiExecutable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMMarkNonGuiExecutable.cmake -------------------------------------------------------------------------------- /modules/ECMOptionalAddSubdirectory.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMOptionalAddSubdirectory.cmake -------------------------------------------------------------------------------- /modules/ECMPackageConfigHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMPackageConfigHelpers.cmake -------------------------------------------------------------------------------- /modules/ECMPoQmTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMPoQmTools.cmake -------------------------------------------------------------------------------- /modules/ECMQMLModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQMLModules.cmake -------------------------------------------------------------------------------- /modules/ECMQchDoxygen.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQchDoxygen.config.in -------------------------------------------------------------------------------- /modules/ECMQchDoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQchDoxygenLayout.xml -------------------------------------------------------------------------------- /modules/ECMQmLoader.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQmLoader.cpp.in -------------------------------------------------------------------------------- /modules/ECMQmlModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQmlModule.cmake -------------------------------------------------------------------------------- /modules/ECMQmlModule.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQmlModule.cpp.in -------------------------------------------------------------------------------- /modules/ECMQmlModule.cpp.in.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQmlModule.cpp.in.license -------------------------------------------------------------------------------- /modules/ECMQmlModule.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQmlModule.h.in -------------------------------------------------------------------------------- /modules/ECMQmlModule.h.in.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQmlModule.h.in.license -------------------------------------------------------------------------------- /modules/ECMQmlModule5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQmlModule5.cmake -------------------------------------------------------------------------------- /modules/ECMQmlModule6.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQmlModule6.cmake -------------------------------------------------------------------------------- /modules/ECMQtDeclareLoggingCategory.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQtDeclareLoggingCategory.cmake -------------------------------------------------------------------------------- /modules/ECMQtDeclareLoggingCategory.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQtDeclareLoggingCategory.cpp.in -------------------------------------------------------------------------------- /modules/ECMQtDeclareLoggingCategory.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQtDeclareLoggingCategory.h.in -------------------------------------------------------------------------------- /modules/ECMQueryQmake.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQueryQmake.cmake -------------------------------------------------------------------------------- /modules/ECMQueryQt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMQueryQt.cmake -------------------------------------------------------------------------------- /modules/ECMSetupQtPluginMacroNames.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMSetupQtPluginMacroNames.cmake -------------------------------------------------------------------------------- /modules/ECMSetupVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMSetupVersion.cmake -------------------------------------------------------------------------------- /modules/ECMSourceVersionControl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMSourceVersionControl.cmake -------------------------------------------------------------------------------- /modules/ECMUninstallTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMUninstallTarget.cmake -------------------------------------------------------------------------------- /modules/ECMUseFindModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMUseFindModules.cmake -------------------------------------------------------------------------------- /modules/ECMVersionHeader.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMVersionHeader.h.in -------------------------------------------------------------------------------- /modules/ECMWinResolveSymlinks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ECMWinResolveSymlinks.cmake -------------------------------------------------------------------------------- /modules/QtVersionOption.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/QtVersionOption.cmake -------------------------------------------------------------------------------- /modules/check-outbound-license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/check-outbound-license.py -------------------------------------------------------------------------------- /modules/ecm_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/modules/ecm_uninstall.cmake.in -------------------------------------------------------------------------------- /test-modules/test_execute_and_compare.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/test-modules/test_execute_and_compare.cmake -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMAddAppIconTest/128-category-name-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddAppIconTest/128-category-name-sidebar.png -------------------------------------------------------------------------------- /tests/ECMAddAppIconTest/128-category-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddAppIconTest/128-category-name.png -------------------------------------------------------------------------------- /tests/ECMAddAppIconTest/16-category-name-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddAppIconTest/16-category-name-sidebar.png -------------------------------------------------------------------------------- /tests/ECMAddAppIconTest/16-category-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddAppIconTest/16-category-name.png -------------------------------------------------------------------------------- /tests/ECMAddAppIconTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddAppIconTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMAddAppIconTest/check_files.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddAppIconTest/check_files.cmake.in -------------------------------------------------------------------------------- /tests/ECMAddAppIconTest/main.cpp: -------------------------------------------------------------------------------- 1 | int main(int, char**) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMAddTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMAddTests/check_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/check_files.cmake -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test1.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test10.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test11.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test12.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test13.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test14.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test15.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test2.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test3.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test4.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test5.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test6.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test7.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test8.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/multi_tests/test9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/multi_tests/test9.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test1.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test2.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test3.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test4.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test5.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test6.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test6body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test6body.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test7.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test8.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/single_tests/test9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/single_tests/test9.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/testhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMAddTests/testhelper.cpp -------------------------------------------------------------------------------- /tests/ECMAddTests/testhelper.h: -------------------------------------------------------------------------------- 1 | void make_test_file(const char *filename); 2 | -------------------------------------------------------------------------------- /tests/ECMCheckOutboundLicenseTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMCheckOutboundLicenseTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMCheckOutboundLicenseTest/run_test.cmake.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMCheckOutboundLicenseTest/testdata/BSD-2-Clause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMCheckOutboundLicenseTest/testdata/BSD-2-Clause.cpp -------------------------------------------------------------------------------- /tests/ECMCheckOutboundLicenseTest/testdata/GPL-2.0-only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMCheckOutboundLicenseTest/testdata/GPL-2.0-only.cpp -------------------------------------------------------------------------------- /tests/ECMCheckOutboundLicenseTest/testdata/GPL-2.0-or-later.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMCheckOutboundLicenseTest/testdata/GPL-2.0-or-later.cpp -------------------------------------------------------------------------------- /tests/ECMCheckOutboundLicenseTest/testdata/GPL-3.0-only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMCheckOutboundLicenseTest/testdata/GPL-3.0-only.cpp -------------------------------------------------------------------------------- /tests/ECMCheckOutboundLicenseTest/testdata/LGPL-2.1-or-later.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMCheckOutboundLicenseTest/testdata/LGPL-2.1-or-later.cpp -------------------------------------------------------------------------------- /tests/ECMCheckOutboundLicenseTest/testdata/LGPL-3.0-only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMCheckOutboundLicenseTest/testdata/LGPL-3.0-only.cpp -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMConfiguredInstallTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/check_tree.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMConfiguredInstallTest/check_tree.cmake.in -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/configured.txt: -------------------------------------------------------------------------------- 1 | [General] 2 | Foo=@FOO@ 3 | Bar=${BAR} 4 | -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/configured_atOnly.txt.in: -------------------------------------------------------------------------------- 1 | [General] 2 | Foo=@FOO@ 3 | Bar=${BAR} 4 | -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/expected/configured.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMConfiguredInstallTest/expected/configured.txt -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/expected/configured_atOnly.txt: -------------------------------------------------------------------------------- 1 | [General] 2 | Foo=myFoo 3 | Bar=${BAR} 4 | -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/expected/multi1.txt: -------------------------------------------------------------------------------- 1 | TestMulti1 2 | Foo=myFoo 3 | -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/expected/multi2.txt: -------------------------------------------------------------------------------- 1 | TestMulti2 2 | Foo=myFoo 3 | -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/multi1.txt.in: -------------------------------------------------------------------------------- 1 | TestMulti1 2 | Foo=@FOO@ 3 | -------------------------------------------------------------------------------- /tests/ECMConfiguredInstallTest/multi2.txt.in: -------------------------------------------------------------------------------- 1 | TestMulti2 2 | Foo=@FOO@ 3 | -------------------------------------------------------------------------------- /tests/ECMFindQmlModuleTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMFindQmlModuleTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMFindQmlModuleTest/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMFindQmlModuleTest/qmlinstall/org/kde/ecmtest/Dummy.qml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMFindQmlModuleTest/qmlinstall/org/kde/ecmtest/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMFindQmlModuleTest/qmlinstall/org/kde/ecmtest/qmldir -------------------------------------------------------------------------------- /tests/ECMGenerateDBusServiceFileTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateDBusServiceFileTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGenerateDBusServiceFileTest/check_tree.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateDBusServiceFileTest/check_tree.cmake.in -------------------------------------------------------------------------------- /tests/ECMGenerateDBusServiceFileTest/expected/org.kde.kded5.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateDBusServiceFileTest/expected/org.kde.kded5.service -------------------------------------------------------------------------------- /tests/ECMGenerateDBusServiceFileTest/expected/org.kde.kded5.withSystemD.renamed.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateDBusServiceFileTest/expected/org.kde.kded5.withSystemD.renamed.service -------------------------------------------------------------------------------- /tests/ECMGenerateDBusServiceFileTest/windowsexpected/org.kde.kded5.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateDBusServiceFileTest/windowsexpected/org.kde.kded5.service -------------------------------------------------------------------------------- /tests/ECMGenerateDBusServiceFileTest/windowsexpected/org.kde.kded5.withSystemD.renamed.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateDBusServiceFileTest/windowsexpected/org.kde.kded5.withSystemD.renamed.service -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateExportHeaderTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/consumer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateExportHeaderTest/consumer/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/consumer/main.cpp: -------------------------------------------------------------------------------- 1 | int main(int, char**) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/consumer/testAPI_DISABLE_DEPRECATED_BEFORE_AND_AT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateExportHeaderTest/consumer/testAPI_DISABLE_DEPRECATED_BEFORE_AND_AT.cmake -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/consumer/testAPI_NO_DEPRECATED.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateExportHeaderTest/consumer/testAPI_NO_DEPRECATED.cmake -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/format_version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateExportHeaderTest/format_version/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/format_version/main.cpp: -------------------------------------------------------------------------------- 1 | int main(int, char**) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateExportHeaderTest/library/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/library/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateExportHeaderTest/library/library.cpp -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/library/library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateExportHeaderTest/library/library.hpp -------------------------------------------------------------------------------- /tests/ECMGenerateExportHeaderTest/library/main.cpp: -------------------------------------------------------------------------------- 1 | int main(int, char**) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateHeadersTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/CamelCaseHeadTest1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/CamelCaseHeadTest2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/CommonHeader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateHeadersTest/CommonHeader -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/headsubdir/headtest2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/headsubdir/headtest3.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/headtest1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/headtest1.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/headtest2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/headtest2.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/headtest4.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMGenerateHeadersTest/run_test.cmake.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGenerateHeadersTest/run_test.cmake.config -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/KF5CoreAddons.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/KF5CoreAddons.pc -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/KF5CoreAddons2.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/KF5CoreAddons2.pc -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/KF5CoreAddons3.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/KF5CoreAddons3.pc -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/KF5CoreAddons4.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/KF5CoreAddons4.pc -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/KF5CoreAddons5.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/KF5CoreAddons5.pc -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/KF6Attica.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/KF6Attica.pc -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/custom_defines/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/custom_defines/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/metainfo_with_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/metainfo_with_description.yaml -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/metainfo_with_empty_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/metainfo_with_empty_description.yaml -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/metainfo_without_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/metainfo_without_description.yaml -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/no_description_parameter_metainfo_with_description-param/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/no_description_parameter_metainfo_with_description-param/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/no_description_parameter_metainfo_with_empty_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/no_description_parameter_metainfo_with_empty_description/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/no_description_parameter_metainfo_without_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/no_description_parameter_metainfo_without_description/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/no_optional_arguments/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/no_optional_arguments/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/test-and-comparison-helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/test-and-comparison-helpers.cmake -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/test_imported_targets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/test_imported_targets/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/test_imported_targets/EGPF_imported_include_dirs_control.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/test_imported_targets/EGPF_imported_include_dirs_control.pc -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/test_imported_targets/main.cpp: -------------------------------------------------------------------------------- 1 | int main(int, char**) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/test_no_interface_include_dirs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/test_no_interface_include_dirs/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/test_no_interface_include_dirs/EGPF_no_interface_include_directories.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/test_no_interface_include_dirs/EGPF_no_interface_include_directories.pc -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/test_no_interface_include_dirs/main.cpp: -------------------------------------------------------------------------------- 1 | int main(int, char**) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/with_an_URL_parameter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/with_an_URL_parameter/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMGeneratePkgConfigFile/with_public_and_private_dependencies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMGeneratePkgConfigFile/with_public_and_private_dependencies/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/128-devices-drive-removable-media-usb-pendrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/128-devices-drive-removable-media-usb-pendrive.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/128-emblems-emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/128-emblems-emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/128-places-home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/128-places-home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/16-actions-badext.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/16-actions-computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/16-actions-computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/16-animations-loading.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/16-animations-loading.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/16-categories-system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/16-categories-system-help.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/16-emotes-face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/16-emotes-face-smile.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/16-intl-something.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/16-intl-something.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/16-status-user-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/16-status-user-online.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/aa-actions-badsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/aa-actions-badsize.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/badlynamedfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/badlynamedfile.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/check_tree.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/check_tree.cmake.in -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/badly-named-files-test/hicolor/16x16/actions/badext.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/badly-named-files-test/hicolor/16x16/actions/old-style-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/badly-named-files-test/hicolor/16x16/actions/old-style-name.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/badly-named-files-test/hicolor/icon-theme.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/badly-named-files-test/hicolor/icon-theme.cache -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/128x128/devices/l10n/en_US/drive-removable-media-usb-pendrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/128x128/devices/l10n/en_US/drive-removable-media-usb-pendrive.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/128x128/emblems/l10n/en_US/emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/128x128/emblems/l10n/en_US/emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/128x128/places/l10n/en_US/home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/128x128/places/l10n/en_US/home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/actions/l10n/en_US/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/actions/l10n/en_US/computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/animations/l10n/en_US/loading.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/animations/l10n/en_US/loading.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/apps/l10n/en_US/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/apps/l10n/en_US/cmake.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/categories/l10n/en_US/system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/categories/l10n/en_US/system-help.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/emotes/l10n/en_US/face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/emotes/l10n/en_US/face-smile.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/intl/l10n/en_US/something.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/intl/l10n/en_US/something.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/status/l10n/en_US/user-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/16x16/status/l10n/en_US/user-online.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/icon-theme.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/icon-theme.cache -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/scalable/mimetypes/l10n/en_US/fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/lang-test/hicolor/scalable/mimetypes/l10n/en_US/fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/128x128/devices/drive-removable-media-usb-pendrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/128x128/devices/drive-removable-media-usb-pendrive.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/128x128/emblems/emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/128x128/emblems/emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/128x128/places/home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/128x128/places/home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/actions/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/actions/computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/animations/loading.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/animations/loading.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/apps/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/apps/cmake.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/categories/system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/categories/system-help.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/emotes/face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/emotes/face-smile.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/intl/something.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/intl/something.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/status/user-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/16x16/status/user-online.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/icon-theme.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/icon-theme.cache -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/scalable/mimetypes/fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/multi-file-test/hicolor/scalable/mimetypes/fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/single-file-test/hicolor/16x16/actions/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/single-file-test/hicolor/16x16/actions/computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/single-file-test/hicolor/icon-theme.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/single-file-test/hicolor/icon-theme.cache -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/128x128/devices/l10n/en_US/drive-removable-media-usb-pendrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/128x128/devices/l10n/en_US/drive-removable-media-usb-pendrive.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/128x128/emblems/l10n/en_US/emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/128x128/emblems/l10n/en_US/emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/128x128/places/l10n/en_US/home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/128x128/places/l10n/en_US/home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/actions/l10n/en_US/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/actions/l10n/en_US/computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/animations/l10n/en_US/loading.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/animations/l10n/en_US/loading.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/apps/l10n/en_US/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/apps/l10n/en_US/cmake.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/categories/l10n/en_US/system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/categories/l10n/en_US/system-help.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/emotes/l10n/en_US/face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/emotes/l10n/en_US/face-smile.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/intl/l10n/en_US/something.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/intl/l10n/en_US/something.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/status/l10n/en_US/user-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/16x16/status/l10n/en_US/user-online.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/icon-theme.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/icon-theme.cache -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/scalable/mimetypes/l10n/en_US/fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-lang-test/oxygen/scalable/mimetypes/l10n/en_US/fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/128x128/devices/drive-removable-media-usb-pendrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/128x128/devices/drive-removable-media-usb-pendrive.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/128x128/emblems/emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/128x128/emblems/emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/128x128/places/home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/128x128/places/home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/actions/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/actions/computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/animations/loading.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/animations/loading.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/apps/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/apps/cmake.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/categories/system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/categories/system-help.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/emotes/face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/emotes/face-smile.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/intl/something.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/intl/something.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/status/user-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/16x16/status/user-online.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/icon-theme.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/icon-theme.cache -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/scalable/mimetypes/fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/themed-test/theme-name-2/scalable/mimetypes/fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/crystalsvg/128x128/emblems/emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/crystalsvg/128x128/emblems/emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/crystalsvg/128x128/emblems/l10n/en_US/emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/crystalsvg/128x128/emblems/l10n/en_US/emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/crystalsvg/icon-theme.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/crystalsvg/icon-theme.cache -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/128x128/devices/drive-removable-media-usb-pendrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/128x128/devices/drive-removable-media-usb-pendrive.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/128x128/places/home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/128x128/places/home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/128x128/places/l10n/en_US/home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/128x128/places/l10n/en_US/home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/actions/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/actions/computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/actions/l10n/en_US/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/actions/l10n/en_US/computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/animations/loading.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/animations/loading.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/apps/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/apps/cmake.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/emotes/face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/emotes/face-smile.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/intl/something.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/intl/something.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/status/user-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/16x16/status/user-online.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/icon-theme.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/hicolor/icon-theme.cache -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/locolor/scalable/mimetypes/fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/locolor/scalable/mimetypes/fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/locolor/scalable/mimetypes/l10n/en_US/fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/locolor/scalable/mimetypes/l10n/en_US/fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/oxygen/16x16/categories/l10n/en_US/system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/oxygen/16x16/categories/l10n/en_US/system-help.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/expected-tree/v1-icons/oxygen/16x16/categories/system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/expected-tree/v1-icons/oxygen/16x16/categories/system-help.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/hi16-actions-old-style-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/hi16-actions-old-style-name.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/sc-mimetypes-fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/sc-mimetypes-fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/subdir/16-apps-cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/subdir/16-apps-cmake.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax-l10n/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax-l10n/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax-l10n/cr128-emblems-emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax-l10n/cr128-emblems-emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax-l10n/hi128-places-home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax-l10n/hi128-places-home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax-l10n/hi16-actions-computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax-l10n/hi16-actions-computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax-l10n/losc-mimetypes-fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax-l10n/losc-mimetypes-fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax-l10n/ox16-categories-system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax-l10n/ox16-categories-system-help.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax-no-icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax-no-icons/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/cr128-emblems-emblem-mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/cr128-emblems-emblem-mounted.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/hi128-devices-drive-removable-media-usb-pendrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/hi128-devices-drive-removable-media-usb-pendrive.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/hi128-places-home.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/hi128-places-home.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/hi16-actions-computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/hi16-actions-computer.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/hi16-animations-loading.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/hi16-animations-loading.mng -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/hi16-apps-cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/hi16-apps-cmake.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/hi16-emotes-face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/hi16-emotes-face-smile.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/hi16-intl-something.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/hi16-intl-something.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/hi16-status-user-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/hi16-status-user-online.png -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/losc-mimetypes-fonts-package.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/losc-mimetypes-fonts-package.svgz -------------------------------------------------------------------------------- /tests/ECMInstallIconsTest/v1-syntax/ox16-categories-system-help.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMInstallIconsTest/v1-syntax/ox16-categories-system-help.mng -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/check.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/check.cmake.in -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/check_conf.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/check_conf.cmake.in -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/check_conf_static.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/check_conf_static.cmake.in -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/only-process.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/only-process.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/po-custom-dir1/es/custom-dir1-install-test.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/po-custom-dir1/es/custom-dir1-install-test.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/po-custom-dir1/fr/custom-dir1-install-test.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/po-custom-dir1/fr/custom-dir1-install-test.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/po-custom-dir2/es/custom-dir2-install-test.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/po-custom-dir2/es/custom-dir2-install-test.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/po-custom-dir2/fr/custom-dir2-install-test.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/po-custom-dir2/fr/custom-dir2-install-test.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/po/es/install-test.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/po/es/install-test.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/po/fr/install-test.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/po/fr/install-test.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/po/no-po/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/po/should-not-be-installed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/process-and-install.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/process-and-install.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/subdir/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/subdir/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_test-po/de/catalog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_test-po/de/catalog.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_test-po/de/catalog2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_test-po/de/catalog2.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_test-po/en/catalog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_test-po/en/catalog.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_test-po/en/catalog2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_test-po/en/catalog2.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_test-po/pt/catalog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_test-po/pt/catalog.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_test-po/pt_BR/catalog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_test-po/pt_BR/catalog.po -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_test.cpp -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_thread_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_thread_test.cpp -------------------------------------------------------------------------------- /tests/ECMPoQmToolsTest/tr_thread_test_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMPoQmToolsTest/tr_thread_test_module.cpp -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/QmlModule.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/QmlModule.qml -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/QmlModule2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/QmlModule2.qml -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/TestModule_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/TestModule_init.cpp -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/check.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/check.cmake.in -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_depends_qt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_depends_qt5 -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_depends_qt5.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_depends_qt5.license -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_depends_qt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_depends_qt6 -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_depends_qt6.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_depends_qt6.license -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_full_qt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_full_qt5 -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_full_qt5.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_full_qt5.license -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_full_qt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_full_qt6 -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_full_qt6.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_full_qt6.license -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_qmlonly_qt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_qmlonly_qt5 -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_qmlonly_qt5.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_qmlonly_qt5.license -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_qmlonly_qt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_qmlonly_qt6 -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmldir_expected_qmlonly_qt6.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmldir_expected_qmlonly_qt6.license -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmlmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmlmodule.cpp -------------------------------------------------------------------------------- /tests/ECMQmlModuleTest/qmlmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQmlModuleTest/qmlmodule.h -------------------------------------------------------------------------------- /tests/ECMQtDeclareLoggingCategoryTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQtDeclareLoggingCategoryTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMQtDeclareLoggingCategoryTest/check.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQtDeclareLoggingCategoryTest/check.cmake.in -------------------------------------------------------------------------------- /tests/ECMQtDeclareLoggingCategoryTest/log.categories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQtDeclareLoggingCategoryTest/log.categories -------------------------------------------------------------------------------- /tests/ECMQtDeclareLoggingCategoryTest/log.renamecategories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQtDeclareLoggingCategoryTest/log.renamecategories -------------------------------------------------------------------------------- /tests/ECMQtDeclareLoggingCategoryTest/testmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMQtDeclareLoggingCategoryTest/testmain.cpp -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_header/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_header/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_header/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_header/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_header_abspath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_header_abspath/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_simple/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_simple/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_simple_no_version_string_vars/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_simple_no_version_string_vars/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_simple_no_version_string_vars/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_soversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_soversion/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_soversion/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_version_file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_version_file/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_version_file/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_version_file_abspath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_explicit_version_file_abspath/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_explicit_version_file_abspath/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header_abspath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header_abspath/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header_abspath/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header_abspath/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header_expected_zero_version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header_expected_zero_version/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header_expected_zero_version/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header_expected_zero_version/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header_prefix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header_prefix/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header_prefix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header_prefix/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header_zero_prefixed_version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header_zero_prefixed_version/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_header_zero_prefixed_version/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_header_zero_prefixed_version/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_simple/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_simple/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_simple_no_version_string_vars/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_simple_no_version_string_vars/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_simple_no_version_string_vars/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_simple_prefix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_simple_prefix/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_simple_prefix/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_soversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_soversion/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_soversion/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_soversion_prefix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_soversion_prefix/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_soversion_prefix/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_version_file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_version_file/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_version_file/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_version_file_abspath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/new_project_version_file_abspath/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/new_project_version_file_abspath/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_header/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_header/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_header/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_header/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_header_abspath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_header_abspath/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_header_abspath/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_header_abspath/main.c -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_simple/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_simple/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_simple_no_version_string_vars/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_simple_no_version_string_vars/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_simple_no_version_string_vars/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_soversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_soversion/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_soversion/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_version_file/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file_abspath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_version_file_abspath/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file_abspath/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file_anynewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_version_file_anynewer/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file_anynewer/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file_exact/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_version_file_exact/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file_exact/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file_samemajor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/old_version_file_samemajor/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/old_version_file_samemajor/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ECMSetupVersionTest/version_helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ECMSetupVersionTest/version_helpers.cmake -------------------------------------------------------------------------------- /tests/ExecuteCoreModules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ExecuteCoreModules/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ExecuteCoreModules/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/ExecuteKDEModules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/ExecuteKDEModules/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ExecuteKDEModules/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/FindModules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/FindModules/CMakeLists.txt -------------------------------------------------------------------------------- /tests/FindModules/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/KDEFetchTranslations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEFetchTranslations/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEInstallDirsTest/not_cache_variable/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEInstallDirsTest/not_cache_variable/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEInstallDirsTest/not_cache_variable/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/KDEInstallDirsTest/relative_or_absolute/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEInstallDirsTest/relative_or_absolute/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEInstallDirsTest/relative_or_absolute/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/KDEInstallDirsTest/var_list.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEInstallDirsTest/var_list.cmake -------------------------------------------------------------------------------- /tests/KDEInstallDirsTest/vars_in_sync/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEInstallDirsTest/vars_in_sync/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEInstallDirsTest/vars_in_sync/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesCrossTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesCrossTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesCrossTest/check.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesCrossTest/check.cmake.in -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesCrossTest/someFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/check.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/check.cmake.in -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $XGETTEXT `find . -name \*.qml` -o $podir/plasma_applet_%{APPNAMELC}.pot -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/README -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/package/contents/images/pairs.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/package/contents/images/pairs.svgz -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/package/contents/ui/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/package/contents/ui/main.qml -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/package/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/package/metadata.desktop -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/qml-plasmoid.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/qml-plasmoid.kdevtemplate -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/qml-plasmoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesForcedTest/qml-plasmoid/qml-plasmoid.png -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/check.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/check.cmake.in -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/qml-plasmoid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/qml-plasmoid/CMakeLists.txt -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/qml-plasmoid/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $XGETTEXT `find . -name \*.qml` -o $podir/plasma_applet_%{APPNAMELC}.pot -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/qml-plasmoid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/qml-plasmoid/README -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/qml-plasmoid/package/contents/images/pairs.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/qml-plasmoid/package/contents/images/pairs.svgz -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/qml-plasmoid/package/contents/ui/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/qml-plasmoid/package/contents/ui/main.qml -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/qml-plasmoid/package/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/qml-plasmoid/package/metadata.desktop -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/qml-plasmoid/qml-plasmoid.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/qml-plasmoid/qml-plasmoid.kdevtemplate -------------------------------------------------------------------------------- /tests/KDEPackageAppTemplatesTest/qml-plasmoid/qml-plasmoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/KDEPackageAppTemplatesTest/qml-plasmoid/qml-plasmoid.png -------------------------------------------------------------------------------- /tests/UseFindModules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/UseFindModules/CMakeLists.txt -------------------------------------------------------------------------------- /tests/UseFindModules/main.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/test_helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/tests/test_helpers.cmake -------------------------------------------------------------------------------- /toolchain/Android.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/Android.cmake -------------------------------------------------------------------------------- /toolchain/ECMAndroidDeployQt5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/ECMAndroidDeployQt5.cmake -------------------------------------------------------------------------------- /toolchain/deployment-file-qt514.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/deployment-file-qt514.json.in -------------------------------------------------------------------------------- /toolchain/deployment-file-qt6.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/deployment-file-qt6.json.in -------------------------------------------------------------------------------- /toolchain/deployment-file-qt6.json.in.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/deployment-file-qt6.json.in.license -------------------------------------------------------------------------------- /toolchain/deployment-file.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/deployment-file.json.in -------------------------------------------------------------------------------- /toolchain/ecm-version.gradle.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/ecm-version.gradle.in -------------------------------------------------------------------------------- /toolchain/generate-fastlane-metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/generate-fastlane-metadata.py -------------------------------------------------------------------------------- /toolchain/hasMainSymbol.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/hasMainSymbol.cmake -------------------------------------------------------------------------------- /toolchain/specifydependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/extra-cmake-modules/HEAD/toolchain/specifydependencies.cmake --------------------------------------------------------------------------------