<table><tr><td style="">lbeltrame added a comment.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D7736" rel="noreferrer">View Revision</a></tr></table><br /><div><div><p>A small number of reviews (this thing is huge). One question: would it be possible to have the bindings per-framework, rather than a single, long list? This is also what made PyKDE4 unwieldy. IOW, each Framework should ship their (optional) bindings. <br />
We can put the tooling in ECM so that everything is in place for all the Frameworks. (This is how the current approach works):</p></div></div><br /><div><strong>INLINE COMMENTS</strong><div><div style="margin: 6px 0 12px 0;"><div style="border: 1px solid #C7CCD9; border-radius: 3px;"><div style="padding: 0; background: #F7F7F7; border-color: #e3e4e8; border-style: solid; border-width: 0 0 1px 0; margin: 0;"><div style="color: #74777d; background: #eff2f4; padding: 6px 8px; overflow: hidden;"><a style="float: right; text-decoration: none;" href="https://phabricator.kde.org/D7736#inline-31766" rel="noreferrer">View Inline</a><span style="color: #4b4d51; font-weight: bold;">CMakeLists.txt:49</span></div>
<div style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; white-space: pre-wrap; clear: both; padding: 4px 0; margin: 0;"><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">find_package(Clang REQUIRED)
</div><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">find_package(LibClang REQUIRED)
</div></div></div>
<div style="margin: 8px 0; padding: 0 12px;"><p style="padding: 0; margin: 8px;">Don't use <tt style="background: #ebebeb; font-size: 13px;">find_package(FOO REQUIRED)</tt>. Use <tt style="background: #ebebeb; font-size: 13px;">find_package(FOO)</tt> then <tt style="background: #ebebeb; font-size: 13px;">set_package_properties(FOO TYPE REQUIRED...</tt>. There are many examples in KDE git you can use. You will need to include FeatureSummary for this to work properly.</p>

<p style="padding: 0; margin: 8px;">Why do I say this? Because now CMake will fail *immediately* at the first error. Otherwise, it will collect and print all missing packages after configuration. It is much easier on the packagers.</p></div></div><br /><div style="border: 1px solid #C7CCD9; border-radius: 3px;"><div style="padding: 0; background: #F7F7F7; border-color: #e3e4e8; border-style: solid; border-width: 0 0 1px 0; margin: 0;"><div style="color: #74777d; background: #eff2f4; padding: 6px 8px; overflow: hidden;"><a style="float: right; text-decoration: none;" href="https://phabricator.kde.org/D7736#inline-31765" rel="noreferrer">View Inline</a><span style="color: #4b4d51; font-weight: bold;">CMakeLists.txt:53</span></div>
<div style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; white-space: pre-wrap; clear: both; padding: 4px 0; margin: 0;"><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">    message(SEND_ERROR "Clang++ not found")
</div><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">elseif(SIP_VERSION VERSION_LESS 4.19.3)
</div><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">    message(SEND_ERROR "SIP version \"${SIP_VERSION}\" too old")
</div></div></div>
<div style="margin: 8px 0; padding: 0 12px;"><p style="padding: 0; margin: 8px;">Any specific reason for this SIP version?</p></div></div><br /><div style="border: 1px solid #C7CCD9; border-radius: 3px;"><div style="padding: 0; background: #F7F7F7; border-color: #e3e4e8; border-style: solid; border-width: 0 0 1px 0; margin: 0;"><div style="color: #74777d; background: #eff2f4; padding: 6px 8px; overflow: hidden;"><a style="float: right; text-decoration: none;" href="https://phabricator.kde.org/D7736#inline-31764" rel="noreferrer">View Inline</a><span style="color: #4b4d51; font-weight: bold;">FindClang.cmake:52</span></div>
<div style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; white-space: pre-wrap; clear: both; padding: 4px 0; margin: 0;"><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);"><span style="color: #304a96">find_program</span><span class="p">(</span><span style="color: #766510">Clang_EXECUTABLE</span> <span style="color: #766510">NAMES</span> <span style="color: #766510">clang-3.9</span><span class="p">)</span>
</div></div></div>
<div style="margin: 8px 0; padding: 0 12px;"><p style="padding: 0; margin: 8px;">This won't work on all distros. Can you either:</p>

<p style="padding: 0; margin: 8px;">a. Take inspiration from KDevelop's FindClang (which works already nicely)<br />
b. Use upstream Clang module to find it and its version?</p>

<p style="padding: 0; margin: 8px;">The same comment goes for FindLibClang.</p></div></div><br /><div style="border: 1px solid #C7CCD9; border-radius: 3px;"><div style="padding: 0; background: #F7F7F7; border-color: #e3e4e8; border-style: solid; border-width: 0 0 1px 0; margin: 0;"><div style="color: #74777d; background: #eff2f4; padding: 6px 8px; overflow: hidden;"><a style="float: right; text-decoration: none;" href="https://phabricator.kde.org/D7736#inline-31767" rel="noreferrer">View Inline</a><span style="color: #4b4d51; font-weight: bold;">HOWTO:12</span></div>
<div style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; white-space: pre-wrap; clear: both; padding: 4px 0; margin: 0;"><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">Ubuntu/Debian "sudo apt install"
</div><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">--------------------------------
</div></div></div>
<div style="margin: 8px 0; padding: 0 12px;"><p style="padding: 0; margin: 8px;">Before distro-specific instructions, put a list of all the dependencies with their upstream names. This ensures that packagers of non Ubuntu/Debian distros can also look them up.</p></div></div></div></div></div><br /><div><strong>REPOSITORY</strong><div><div>R240 Extra CMake Modules</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D7736" rel="noreferrer">https://phabricator.kde.org/D7736</a></div></div><br /><div><strong>To: </strong>shaheed, lbeltrame<br /><strong>Cc: </strong>Frameworks, Build System<br /></div>