Skip to content

Commit

Permalink
Added chapter on CMake to Development Environment Documentation.
Browse files Browse the repository at this point in the history
Signed-off-by: Tobias Lorenz <[email protected]>
  • Loading branch information
etas-lorenz committed Aug 27, 2014
1 parent f723c57 commit 61b34ae
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<topicref href="topics/git.dita" type="topic"/>
</topichead>
<topichead navtitle="Build">
<topicref href="topics/cmake.dita" type="topic"/>
<topicref href="topics/msbuild.dita" type="topic"/>
<topicref href="topics/vc.dita" type="topic"/>
<topicref href="topics/Build_Configurations.dita" type="topic"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<topic id="msbuild" xml:lang="en-us">
<title>Build Configurations</title>
<prolog>
<author>Tobias Lorenz</author>
<author>RBEI</author>
<copyright>
<copyryear year="2011"/>
<copyrholder>ETAS GmbH</copyrholder>
Expand Down
2 changes: 1 addition & 1 deletion Documents/1 Development Environment/topics/autoit.dita
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</section>
<section>
<title>Download</title>
<p>AutoIt is available for download at <xref href="http://www.autoitscript.com/site/autoit/downloads/" scope="external"/>. Download the installed <filepath>autoit-v3-setup.exe</filepath> (2011-10-25).</p>
<p>AutoIt is available for download at <xref href="http://www.autoitscript.com/site/autoit/downloads/" scope="external"/>. Download the <filepath>autoit-v3-setup.exe</filepath> (2011-10-25).</p>
</section>
<section>
<title>Installation</title>
Expand Down
35 changes: 35 additions & 0 deletions Documents/1 Development Environment/topics/cmake.dita
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- This document was created with Syntext Serna Free. --><!DOCTYPE topic PUBLIC "-//OASIS//DTD DITA Topic//EN" "http://docs.oasis-open.org/dita/v1.1/OS/dtd/topic.dtd" []>
<topic id="cmake" xml:lang="en-us">
<title>CMake - Cross Platform Make</title>
<prolog>
<author>Tobias Lorenz</author>
<copyright>
<copyryear year="2014"/>
<copyrholder>ETAS GmbH</copyrholder>
</copyright>
</prolog>
<body>
<section>
<title>Description</title>
<p>CMake automates the task to generate solution and projects files for a specific target build system or IDE.</p>
</section>
<section>
<title>Download</title>
<p>CMake is available for download at <xref href="http://www.cmake.org/cmake/resources/software.html" scope="external"/>. Download the <filepath>cmake-3.0.1-win32-x86.exe</filepath> (2014-08-25).</p>
</section>
<section>
<title>Installation</title>
<p>Just execute the installer <filepath>cmake-3.0.1-win32-x86.exe</filepath>. The standard installation folder is <filepath>%ProgramFiles%\CMake</filepath>.</p>
</section>
<section>
<title>Configuration</title>
<p>There is no specific configuration of CMake necessary.</p>
</section>
<section>
<title>Usage</title>
<p>Just execute <filepath>Sources\build.bat</filepath> to generate the Microsoft Visual Studio solution and project files and to build the project in the Release configuration. The output is created in the folder <filepath>Sources\BIN\Release</filepath>.</p>
<p>If you want to build in Debug configuration, you need to adjust the <filepath>Sources\build.bat</filepath> accordingly. The output is then created in the folder <filepath>Sources\BIN\Debug</filepath>.</p>
</section>
</body>
</topic>

0 comments on commit 61b34ae

Please sign in to comment.