87 lines
5.0 KiB
HTML
87 lines
5.0 KiB
HTML
<html><head><title>FreeCAD Build Tool/jp</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>FreeCAD Build Tool/jp</h1></div>
|
|
|
|
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><p><b>FreeCAD build tool</b> または <b>fcbt</b> は、以下の場所にあるpythonスクリプトです。
|
|
</p>
|
|
<pre>trunc/src/Tools/fcbt.py
|
|
</pre>
|
|
<p>このスクリプトは、FreeCADのビルド時、配布時、拡張時の煩雑なタスクを単純化するのに使われます。
|
|
</p>
|
|
<div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
|
|
<ul>
|
|
<li class="toclevel-1 tocsection-1"><a href="#.E4.BD.BF.E7.94.A8.E6.96.B9.E6.B3.95"><span class="tocnumber">1</span> <span class="toctext">使用方法</span></a>
|
|
<ul>
|
|
<li class="toclevel-2 tocsection-2"><a href="#DistSrc"><span class="tocnumber">1.1</span> <span class="toctext">DistSrc</span></a></li>
|
|
<li class="toclevel-2 tocsection-3"><a href="#DistBin"><span class="tocnumber">1.2</span> <span class="toctext">DistBin</span></a></li>
|
|
<li class="toclevel-2 tocsection-4"><a href="#DistSetup"><span class="tocnumber">1.3</span> <span class="toctext">DistSetup</span></a></li>
|
|
<li class="toclevel-2 tocsection-5"><a href="#DistSetup_2"><span class="tocnumber">1.4</span> <span class="toctext">DistSetup</span></a></li>
|
|
<li class="toclevel-2 tocsection-6"><a href="#DistAll"><span class="tocnumber">1.5</span> <span class="toctext">DistAll</span></a></li>
|
|
<li class="toclevel-2 tocsection-7"><a href="#NextBuildNumber"><span class="tocnumber">1.6</span> <span class="toctext">NextBuildNumber</span></a></li>
|
|
<li class="toclevel-2 tocsection-8"><a href="#CreateModule"><span class="tocnumber">1.7</span> <span class="toctext">CreateModule</span></a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<h2><span class="mw-headline" id=".E4.BD.BF.E7.94.A8.E6.96.B9.E6.B3.95">使用方法</span></h2>
|
|
<p><a href="http://en.wikipedia.org/wiki/Python_(programming_language)" class="extiw" title="wikipedia:Python (programming language)">Python</a>を正常にインストールすると、"fcbt"を以下のコマンドで呼び出すことができます。
|
|
</p>
|
|
<pre>python fbct.py
|
|
</pre>
|
|
<p>あなたが使いたいタスクのメニューを表示します。:
|
|
</p>
|
|
<pre>FreeCAD Build Tool
|
|
Usage:
|
|
fcbt <command name> [command parameter]
|
|
possible commands are:
|
|
- DistSrc (DS) Build a source Distr. of the current source tree
|
|
- DistBin (DB) Build a binary Distr. of the current source tree
|
|
- DistSetup (DI) Build a Setup Distr. of the current source tree
|
|
- DistSetup (DUI) Build a User Setup Distr. of the current source tree
|
|
- DistAll (DA) Run all three above modules
|
|
- NextBuildNumber (NBN) Increase the Build Number of this Version
|
|
- CreateModule (CM) Insert a new FreeCAD Module in the module directory
|
|
|
|
For help on the modules type:
|
|
fcbt <command name> ?
|
|
</pre>
|
|
<p>プロンプト入力時に、呼び出すコマンドの省略形を入力します。例えば、 <a href="Module_Creation.html" title="Module Creation">モジュール作成</a>は、"CM"を入力します。
|
|
</p>
|
|
<h3><span class="mw-headline" id="DistSrc">DistSrc</span></h3>
|
|
<p>"DS"コマンドは、現在のソースツリーの <b>ソース配布パッケージを作成します</b> 。
|
|
</p>
|
|
<h3><span class="mw-headline" id="DistBin">DistBin</span></h3>
|
|
<p>"DB"コマンドは、 現在のソースツリーの <b>バイナリ配布パッケージを作成します</b> 。
|
|
</p>
|
|
<h3><span class="mw-headline" id="DistSetup">DistSetup</span></h3>
|
|
<p>"DI"コマンドは、 現在のソースツリーの <b>セットアップ配布パッケージを作成します</b> 。
|
|
</p>
|
|
<h3><span class="mw-headline" id="DistSetup_2">DistSetup</span></h3>
|
|
<p>"DUI"コマンドは、 現在のソースツリーの <b>ユーザセットアップ配布パッケージを作成します</b> 。
|
|
</p>
|
|
<h3><span class="mw-headline" id="DistAll">DistAll</span></h3>
|
|
<p>"DA"コマンドは、 "DS", "DB" と "DI" を順番に実行します。
|
|
</p>
|
|
<h3><span class="mw-headline" id="NextBuildNumber">NextBuildNumber</span></h3>
|
|
<p>"NBN" コマンドは、 新しいバージョンのFreeCADを作成するために、 <b>ビルドナンバーを増やします</b> 。
|
|
</p>
|
|
<h3><span class="mw-headline" id="CreateModule">CreateModule</span></h3>
|
|
<p>"CM"コマンドは <a href="Module_Creation.html" title="Module Creation">新しいアプリケーションモジュールを作成します</a>。
|
|
</p>
|
|
|
|
<p><br />
|
|
</p>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div><div class="printfooter">
|
|
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=FreeCAD_Build_Tool/jp&oldid=179383">http://www.freecadweb.org/wiki/index.php?title=FreeCAD_Build_Tool/jp&oldid=179383</a>"</div>
|
|
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
|
|
</div>
|
|
</div>
|
|
<div id="mw-navigation">
|
|
<h2>Navigation menu</h2>
|
|
|
|
</body></html> |