<table><tr><td style="">thomasfischer created this revision.<br />Herald added projects: Frameworks, Build System.<br />Herald added subscribers: kde-buildsystem, kde-frameworks-devel.<br />thomasfischer requested review of this revision.
</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/D24641">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>In KBibTeX, there is a <a href="https://cgit.kde.org/kbibtex.git/tree/src/getgit.cmake" class="remarkup-link" target="_blank" rel="noreferrer"><tt style="background: #ebebeb; font-size: 13px;">getgit.cmake</tt></a> file to collect information from Git regarding the source's history assuming that the source code came from a Git repository. <tt style="background: #ebebeb; font-size: 13px;">ECMSourceVersionControl.cmake</tt> can be expanded making <tt style="background: #ebebeb; font-size: 13px;">getgit.cmake</tt>'s functionality available to all KDE projects.<br />
Code from KBibTeX's <tt style="background: #ebebeb; font-size: 13px;">getgit.cmake</tt> was refactored to fit <tt style="background: #ebebeb; font-size: 13px;">ECMSourceVersionControl.cmake</tt> and similar code has been added to support Subversion and other version control systems.</p>

<p>Different version control systems are supported to different degrees:</p>

<ul class="remarkup-list">
<li class="remarkup-list-item">Git is fully supported thanks to the mature code from <tt style="background: #ebebeb; font-size: 13px;">getgit.cmake</tt></li>
<li class="remarkup-list-item">Subversion is well supported except for the question wheter to use <tt style="background: #ebebeb; font-size: 13px;">last-changed-revision</tt> or just <tt style="background: #ebebeb; font-size: 13px;">revision</tt> and how to correctly compute the commit count (some <tt style="background: #ebebeb; font-size: 13px;">svn log ... | grep -c ...</tt> won't be available)</li>
<li class="remarkup-list-item">Mercurial support only covers <tt style="background: #ebebeb; font-size: 13px;">ECM_SOURCE_VERSION_CONTROL_BRANCH</tt> but not <tt style="background: #ebebeb; font-size: 13px;">ECM_SOURCE_VERSION_CONTROL_COMMIT_COUNT</tt> or <tt style="background: #ebebeb; font-size: 13px;">ECM_SOURCE_VERSION_CONTROL_REVISION</tt></li>
<li class="remarkup-list-item">Bazaar is virtually incomplete. However, this seems to be a dead project anyway.</li>
</ul></div></div><br /><div><strong>TEST PLAN</strong><div><ol class="remarkup-list">
<li class="remarkup-list-item">Create a temporary directory and copy either a .git, .svn, or .hg directory from another project into this directory.</li>
<li class="remarkup-list-item">Copy the patched <tt style="background: #ebebeb; font-size: 13px;">ECMSourceVersionControl.cmake</tt> into this temporary directory.</li>
<li class="remarkup-list-item">Create a <tt style="background: #ebebeb; font-size: 13px;">CMakeLists.txt</tt> file which may look like this:</li>
</ol>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">cmake_minimum_required(VERSION 3.7.2)
project(ECMSourceVersionControlTest)
find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR})
include(ECMSourceVersionControl)
message(${ECM_SOURCE_UNDER_VERSION_CONTROL})
message(${ECM_SOURCE_VERSION_CONTROL_REVISION})
message(${ECM_SOURCE_VERSION_CONTROL_BRANCH})
message(${ECM_SOURCE_VERSION_CONTROL_COMMIT_COUNT})</pre></div>

<p>In another temporary directory, run <tt style="background: #ebebeb; font-size: 13px;">cmake</tt> referring to the first temporary directory.</p></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/D24641">https://phabricator.kde.org/D24641</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>modules/ECMSourceVersionControl.cmake</div></div></div><br /><div><strong>To: </strong>thomasfischer<br /><strong>Cc: </strong>kde-frameworks-devel, kde-buildsystem, LeGast00n, GB_2, bencreasy, michaelh, ngraham, bruns<br /></div>