<feed xmlns='http://www.w3.org/2005/Atom'>
<title>extra-cmake-modules.git/toolchain, branch v5.19.0</title>
<subtitle>hurd extra-cmake-modules.git</subtitle>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/'/>
<entry>
<title>Make sure the prefix is looked-up on Android</title>
<updated>2016-01-28T11:06:57+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2016-01-28T11:06:57+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=123d0d14017a25fb387efd8fe3c2c1323f9c3815'/>
<id>123d0d14017a25fb387efd8fe3c2c1323f9c3815</id>
<content type='text'>
The only reason why it used to work, is because all libraries we're including,
provide *Config.cmake files, which don't respect this setting.

REVIEW: 126896
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The only reason why it used to work, is because all libraries we're including,
provide *Config.cmake files, which don't respect this setting.

REVIEW: 126896
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean export dir before generating an APK again</title>
<updated>2015-11-16T15:55:36+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-11-16T15:55:36+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=208ad2b3c1959a70bc9a7b738e89ad3ee4ae2446'/>
<id>208ad2b3c1959a70bc9a7b738e89ad3ee4ae2446</id>
<content type='text'>
Makes sure there isn't old stuff still there, it didn't save much time to
keep the files around anyway.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Makes sure there isn't old stuff still there, it didn't save much time to
keep the files around anyway.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove workaround to delay execution on Android</title>
<updated>2015-09-30T23:25:03+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-09-30T23:25:03+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=3b20ef911eb83b7bd37315ace682e0e6bc6195d9'/>
<id>3b20ef911eb83b7bd37315ace682e0e6bc6195d9</id>
<content type='text'>
* Remove get_property calls on targets, this way we don't need to be called
right before configuration time.
* Removes EOFHook

Instead we process it at generation time using the link.txt file (which is
probably another hack)

REVIEW: 125084
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Remove get_property calls on targets, this way we don't need to be called
right before configuration time.
* Removes EOFHook

Instead we process it at generation time using the link.txt file (which is
probably another hack)

REVIEW: 125084
</pre>
</div>
</content>
</entry>
<entry>
<title>Look for the files in the installed prefix rather the prefix path</title>
<updated>2015-09-13T00:04:07+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-09-13T00:04:07+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=94c9958d41b145124ba5c96777f29e8eb81df160'/>
<id>94c9958d41b145124ba5c96777f29e8eb81df160</id>
<content type='text'>
In general, we are looking for what we're installing, not for what we
already had.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In general, we are looking for what we're installing, not for what we
already had.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Qt5 to specify what's Qt5 installation prefix</title>
<updated>2015-09-12T23:57:58+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-09-12T23:57:58+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=3915bacd6055087bf71ccabc5c9ddf15743f4e9a'/>
<id>3915bacd6055087bf71ccabc5c9ddf15743f4e9a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add definition ANDROID as needed in qsystemdetection.h.</title>
<updated>2015-09-12T08:41:02+00:00</updated>
<author>
<name>Andreas Cord-Landwehr</name>
<email>cordlandwehr@kde.org</email>
</author>
<published>2015-09-12T08:15:18+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=faedc8d01697ab1d573d5740f24e7279f4dba14f'/>
<id>faedc8d01697ab1d573d5740f24e7279f4dba14f</id>
<content type='text'>
QtCore/qsystemdetection.h sets the define Q_OS_ANDROID based on having
ANDROID defined. Hence, adding the ANDROID define allows applications to
use the Q_OS_ANDROID for ifdef'ing.

REVIEW: 125183
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
QtCore/qsystemdetection.h sets the define Q_OS_ANDROID based on having
ANDROID defined. Hence, adding the ANDROID define allows applications to
use the Q_OS_ANDROID for ifdef'ing.

REVIEW: 125183
</pre>
</div>
</content>
</entry>
<entry>
<title>Add comment to Android toolchain file.</title>
<updated>2015-02-09T11:44:29+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-02-09T11:44:29+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=bd7aa7a91ab75639ddc3a274718da55e6cd2ae81'/>
<id>bd7aa7a91ab75639ddc3a274718da55e6cd2ae81</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Android toolchain module to the documentation.</title>
<updated>2015-02-06T12:31:05+00:00</updated>
<author>
<name>Alex Merry</name>
<email>alex.merry@kde.org</email>
</author>
<published>2015-02-06T12:31:05+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=98a1ac4bf153581865662bd55fd139844d2de5cd'/>
<id>98a1ac4bf153581865662bd55fd139844d2de5cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move Android toolchain module to ECM</title>
<updated>2015-02-06T00:24:23+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2015-02-06T00:24:23+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=5b39c909baeb3e4c247a43b91a884d5990c99092'/>
<id>5b39c909baeb3e4c247a43b91a884d5990c99092</id>
<content type='text'>
Introduces the new Android toolchain file for being able to easily compile
our cmake projects in Android, with an emphasis on Qt projects.

CHANGELOG: New Android toolchain support module.

REVIEW: 121545
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduces the new Android toolchain file for being able to easily compile
our cmake projects in Android, with an emphasis on Qt projects.

CHANGELOG: New Android toolchain support module.

REVIEW: 121545
</pre>
</div>
</content>
</entry>
</feed>
