<feed xmlns='http://www.w3.org/2005/Atom'>
<title>extra-cmake-modules.git, branch v5.94.0-rc1</title>
<subtitle>hurd extra-cmake-modules.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/'/>
<entry>
<title>typo--</title>
<updated>2022-05-01T11:10:11+00:00</updated>
<author>
<name>Harald Sitter</name>
<email>sitter@kde.org</email>
</author>
<published>2022-05-01T11:10:11+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=b6c8b20c1047006f148a9376046e45e8f036b3bd'/>
<id>b6c8b20c1047006f148a9376046e45e8f036b3bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[KDEMetaInfoPlatformCheck] Add missing doc link</title>
<updated>2022-04-23T17:18:03+00:00</updated>
<author>
<name>Julius Künzel</name>
<email>jk.kdedev@smartlab.uber.space</email>
</author>
<published>2022-04-23T17:18:03+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=0a624648a20d01a07849538abdb21655af4241b6'/>
<id>0a624648a20d01a07849538abdb21655af4241b6</id>
<content type='text'>
@aacid related to your MR !245
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
@aacid related to your MR !245
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop lib prefix when building for Windows (MinGW)</title>
<updated>2022-04-23T15:16:08+00:00</updated>
<author>
<name>Julius Künzel</name>
<email>jk.kdedev@smartlab.uber.space</email>
</author>
<published>2022-04-23T15:16:08+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=7e8c2634dd994a923bf389f561f74e54a28063b6'/>
<id>7e8c2634dd994a923bf389f561f74e54a28063b6</id>
<content type='text'>
QQmlImportDatabase::resolvePlugin doesn't accept lib prefixes under
Windows, causing to fail to import when using as a dynamic plugin.

Inspired by kirigami!34
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
QQmlImportDatabase::resolvePlugin doesn't accept lib prefixes under
Windows, causing to fail to import when using as a dynamic plugin.

Inspired by kirigami!34
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow ecm_add_qtwayland_{client,server}_protocol take targets</title>
<updated>2022-04-20T14:01:27+00:00</updated>
<author>
<name>Vlad Zahorodnii</name>
<email>vlad.zahorodnii@kde.org</email>
</author>
<published>2022-04-20T11:42:41+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=997bd09f326e065cff6fa58c081f14c1d7aee6e5'/>
<id>997bd09f326e065cff6fa58c081f14c1d7aee6e5</id>
<content type='text'>
Allows us to avoid using source variables.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows us to avoid using source variables.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow ecm_add_wayland_{client,server}_protocol take targets</title>
<updated>2022-04-20T14:01:24+00:00</updated>
<author>
<name>Vlad Zahorodnii</name>
<email>vlad.zahorodnii@kde.org</email>
</author>
<published>2022-04-20T11:36:39+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=e4dbfb219c0dbb6d3d6b888a8a0d964da50595e8'/>
<id>e4dbfb219c0dbb6d3d6b888a8a0d964da50595e8</id>
<content type='text'>
Allows us to avoid using source variables.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows us to avoid using source variables.
</pre>
</div>
</content>
</entry>
<entry>
<title>ECMQueryQt: always use CMake target to find the qmake/qtpaths binary</title>
<updated>2022-04-15T19:54:34+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2022-04-15T19:54:34+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=01f41fe327e66872a5182db1bbbace805e07df40'/>
<id>01f41fe327e66872a5182db1bbbace805e07df40</id>
<content type='text'>
This means removing the find_program() logic, since it was only useful if
we don't want to make CMake spend time finding a compiler; so it was only
useful for building modules that don't need a compiler at all, wallpapers,
icon themes ...etc; so find_program() is only useful when it comes before
the find_package() and enable_language() calls. Thanks to Christophe
Giboudeaux for the explanation. This might make the build time for such
modules a tiny bit longer, but it's worth it to make finding qmake/qtpaths
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This means removing the find_program() logic, since it was only useful if
we don't want to make CMake spend time finding a compiler; so it was only
useful for building modules that don't need a compiler at all, wallpapers,
icon themes ...etc; so find_program() is only useful when it comes before
the find_package() and enable_language() calls. Thanks to Christophe
Giboudeaux for the explanation. This might make the build time for such
modules a tiny bit longer, but it's worth it to make finding qmake/qtpaths
</pre>
</div>
</content>
</entry>
<entry>
<title>KDEGitCommitHooks: don't overwrite git pre-commit hook script</title>
<updated>2022-04-10T14:32:10+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2022-04-10T11:56:35+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=6224e7b8c28d434b81a19ac47b88cb58fee9d7d5'/>
<id>6224e7b8c28d434b81a19ac47b88cb58fee9d7d5</id>
<content type='text'>
If the .git/hooks/pre-commit already exists, only add the clang-format line
if it doesn't already exist.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the .git/hooks/pre-commit already exists, only add the clang-format line
if it doesn't already exist.
</pre>
</div>
</content>
</entry>
<entry>
<title>KDEGitCommitHooks: only configure pre-commit hook if needed</title>
<updated>2022-04-10T14:31:51+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2022-04-10T04:22:49+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=d0f58e8beafe4ffd4bd371152947b84ebe8a8ef2'/>
<id>d0f58e8beafe4ffd4bd371152947b84ebe8a8ef2</id>
<content type='text'>
If clang-format isn't found, there is nothing to write to the file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If clang-format isn't found, there is nothing to write to the file.
</pre>
</div>
</content>
</entry>
<entry>
<title>GIT_SILENT Upgrade ECM version to 5.94.0.</title>
<updated>2022-04-09T22:06:04+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2022-04-09T22:06:04+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=abd04935a789bbde7916547a4473f3d201596e95'/>
<id>abd04935a789bbde7916547a4473f3d201596e95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Windows CI</title>
<updated>2022-04-05T22:29:15+00:00</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2022-04-05T22:29:15+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=7dd9e31455ad45effa0e57d08c7b6cdd3287fb0e'/>
<id>7dd9e31455ad45effa0e57d08c7b6cdd3287fb0e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
