Skip to content

Commit 6819f8d

Browse files
committed
Remove AntTweakBar from documentation
1 parent d260fed commit 6819f8d

File tree

5 files changed

+3
-29
lines changed

5 files changed

+3
-29
lines changed

docs/AntTweakBar/License.txt

Lines changed: 0 additions & 23 deletions
This file was deleted.

docs/Credits.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ <h2>Libraries</h2>
4444
<li><a href="http://cairographics.org/">Cairo</a></li>
4545
<li><a href="http://muonics.net/school/spring05/videoInput/">videoInput</a></li>
4646
<li><a href="http://www.zlib.net/">zlib</a></li>
47-
<li><a href="http://www.antisphere.com/Wiki/tools:anttweakbar">AntTweakBar</a></li>
4847
<li><a href="http://rapidxml.sourceforge.net/">RapidXml</a></li>
4948
<li><a href="http://xiph.org/vorbis/">Ogg Vorbis</a></li>
5049
<li><a href="http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html">ooura</a></li>
@@ -54,4 +53,4 @@ <h2>Libraries</h2>
5453
</div>
5554
</div>
5655
</body>
57-
</html>
56+
</html>

docs/htmlsrc/guides/cmake/cmake.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ <h3 id="command-line-options">Command-line Options</h3>
6363
<p><code>CINDER_BUILD_TESTS</code>: Builds the unit tests (You can then run the tests from the command line with <code>make test</code> / <code>make check</code>).</p>
6464
<p><code>CINDER_BUILD_SAMPLE</code>: Specify the name of a single sample to build, after libcinder successfully builds. It will end up in the current build folder. For example, adding the option <code>-DCINDER_BUILD_SAMPLE=BasicApp</code> will also build the BasicApp sample and place it at <code>build/Debug/BasicApp/BasicApp.app</code>.</p>
6565
<p><code>CINDER_BUILD_ALL_SAMPLES</code>: Specifying <code>True</code> here will tell CMake to try to build all of the samples within cinder's samples directory. Be prepared to wait a while.</p>
66-
<p><code>CINDER_DISABLE_ANTTWEAKBAR</code>: Build Cinder without GUI support. Can be used for reducing buid time when GUI support through AntTweakBar is not a requirement.</p>
6766
<p><code>CINDER_DISABLE_AUDIO</code>: Build Cinder without audio support. Can be used for reducing build time when there is no requirement for audio features.</p>
6867
<p><code>CINDER_DISABLE_VIDEO</code>: Build Cinder without video support. Can be used for reducing build time when there is no requirement for video features.</p>
6968
<h1 id="building-your-application-with-cmake">Building your application with CMake</h1>

docs/htmlsrc/guides/dependencies/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ <h1>3rd Party Dependencies</h1>
4040
<tr><td><a href="http://rapidxml.sourceforge.net/">rapidxml</a></td><td>1.13</td><td><a href="http://rapidxml.sourceforge.net/license.txt">Boost</a></td><td>XML parsing</td></tr>
4141
<tr><td><a href="https://github.com/nlohmann/json">JSON for Modern C++</a></td><td>3.10.5</td><td><a href="https://github.com/nlohmann/json/blob/develop/LICENSE.MIT">MIT</a></td><td>JSON parsing</td></tr>
4242
<tr><td><a href="https://github.com/open-source-parsers/jsoncpp">jsoncpp</a></td><td>1.3.0</td><td><a href="https://github.com/open-source-parsers/jsoncpp/blob/master/LICENSE">MIT</a></td><td>JSON parsing (deprecated)</td></tr>
43-
<tr><td><a href="http://anttweakbar.sourceforge.net/">AntTweakBar</a></td><td>1.16</td><td><a href="http://anttweakbar.sourceforge.net/doc/tools:anttweakbar:license">zlib</a></td><td>Parameter manipulation GUI</td></tr>
4443
<tr><td><a href="http://glsdk.sourceforge.net/docs/html/group__module__glload.html">glload</a></td><td>0.5</td><td><a href="https://opensource.org/licenses/MIT">MIT</a></td><td>OpenGL function loading</td></tr>
4544
<tr><td><a href="https://github.com/syoyo/tinyexr">tinyexr</a></td><td>1.0.12</td><td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td><td>OpenEXR image read/write</td></tr>
4645
<tr><td><a href="https://git.xiph.org/?p=vorbis.git">libvorbis</a></td><td>1.3.4</td><td><a href="https://git.xiph.org/?p=vorbis.git;a=blob_plain;f=COPYING;hb=HEAD">BSD</a></td><td>Ogg Vorbis audio read/write</td></tr>

docs/htmlsrc/guides/linux-notes/ubuntu.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ <h3 id="running">Running</h3>
8181

8282
<h1 id="additional-cmake-flags">Additional Build Options</h1>
8383
<h3 id="minimal">Minimal build</h3>
84-
<p>The following creates a minimal Cinder build suitable for many command line application scenarios. It disables audio, video, and AntTweakBar.
85-
<pre><code>cmake .. -DCINDER_DISABLE_AUDIO=true -DCINDER_DISABLE_VIDEO=true -DCINDER_DISABLE_ANTTWEAKBAR=true</code></pre>
84+
<p>The following creates a minimal Cinder build suitable for many command line application scenarios. It disables audio and video.</p>
85+
<pre><code>cmake .. -DCINDER_DISABLE_AUDIO=true -DCINDER_DISABLE_VIDEO=true</code></pre>
8686
<p>The required apt packages for such a build can be installed with:</p>
8787
<pre><code>sudo apt install libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev \
8888
zlib1g-dev libfontconfig1-dev libcurl4-gnutls-dev</code></pre>

0 commit comments

Comments
 (0)