Bug #185048 - Doc update.
BIN
doc/org.eclipse.cdt.doc.user/images/cdt_select_type.png
Normal file
After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 32 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_annotation_next.png
Normal file
After Width: | Height: | Size: 497 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_annotation_prev.png
Normal file
After Width: | Height: | Size: 489 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_build_all.png
Normal file
After Width: | Height: | Size: 423 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_build_sel.png
Normal file
After Width: | Height: | Size: 579 B |
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 623 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_create_cproject.png
Normal file
After Width: | Height: | Size: 625 B |
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 492 B |
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 408 B |
Before Width: | Height: | Size: 553 B After Width: | Height: | Size: 568 B |
Before Width: | Height: | Size: 286 B |
Before Width: | Height: | Size: 294 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_manage_cfg.png
Normal file
After Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 453 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_show_selected.png
Normal file
After Width: | Height: | Size: 459 B |
Before Width: | Height: | Size: 482 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_ws_chars.png
Normal file
After Width: | Height: | Size: 466 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_wset_add.png
Normal file
After Width: | Height: | Size: 539 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_wset_del.png
Normal file
After Width: | Height: | Size: 517 B |
BIN
doc/org.eclipse.cdt.doc.user/images/icon_wset_edit.png
Normal file
After Width: | Height: | Size: 459 B |
BIN
doc/org.eclipse.cdt.doc.user/images/new_proj_wz_config.png
Normal file
After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 12 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/new_proj_wz_name.png
Normal file
After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 12 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/new_proj_wz_toolchain.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/new_proj_wz_type.png
Normal file
After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 34 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/project_rename2.png
Normal file
After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 30 KiB |
|
@ -6,14 +6,6 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<h1>New Project Wizard</h1>
|
||||
<p>The <b>New Project</b> wizard helps you create a new C or C++ project in the workbench.
|
||||
|
@ -26,41 +18,39 @@ The <b>New Project</b> wizard appears:
|
|||
|
||||
<p>With the <b>New Project</b> wizard you can choose to:</p>
|
||||
<ul>
|
||||
<li>Create a <b>Managed Make C Project</b></li>
|
||||
<li>Create a <b>Standard Make C Project</b></li>
|
||||
<li>Create a <b>Managed Make C++ Project</b></li>
|
||||
<li>Create a <b>Standard Make C++ Project</b></li>
|
||||
<li>Create <b>C Project</b></li>
|
||||
<li>Create <b>C++ Project</b></li>
|
||||
</ul>
|
||||
<p>
|
||||
You can either provide your makefile to build new project,
|
||||
or let CDT generate makefile automatically.
|
||||
In CDT 3.x, there were 2 different project types:
|
||||
"Managed make" and "Standard make", resp.
|
||||
</p>
|
||||
<p>
|
||||
Currently, these features are combined in the single project.
|
||||
In most cases, you can switch makefile generation ON or OFF
|
||||
at any time after project creation.
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"><br>
|
||||
<p><img border="0" src="../images/ngconcepts.gif"
|
||||
ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">New CDT Project creation Tutorial - with generated makefile</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">New CDT Project creation Tutorial - with user's makefile</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_name.htm">Managed Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a Target</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_errorp.htm">Managed Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
|
||||
|
||||
<a href="cdt_u_new_proj_wiz_name.htm">Set Project Name and Location</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_type.htm">Select Project type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_toolchain.htm">Select toolchain</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_config.htm">Select configurations</a><br>
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" >
|
||||
<img src="../images/intl_07.gif" ALT="Intel Copyright Statement" >
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,72 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard, Select configurations</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard, Select configurations</h1>
|
||||
<p>You can select toolchain(s) from this page of the wizard.</p>
|
||||
<p><img src="../images/new_proj_wz_config.png"
|
||||
alt="New Project Wizard, Select configurations"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Project type</b></td>
|
||||
<td>Selected project type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Tool-chains</b></td>
|
||||
<td>One or more selected tool chains</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Configurations</b></td>
|
||||
<td>List of all build configurations to be created.
|
||||
Check items you want to create.
|
||||
At least one configuration must be checked.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Select all</b></td>
|
||||
<td>Checks all configurations</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Deselect all</b></td>
|
||||
<td>Unchecks all configurations</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Advanced settings ...</b></td>
|
||||
<td>Displays properties dialog for new project.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif"
|
||||
ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">New CDT Project creation Tutorial - with generated makefile</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">New CDT Project creation Tutorial - with user's makefile</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz_name.htm">Set Project Name and Location</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_type.htm">Select Project type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_toolchain.htm">Select toolchain</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_config.htm">Select configurations</a><br>
|
||||
<p>
|
||||
<img src="../images/intl_07.gif" ALT="Intel Copyright Statement" >
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,69 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Managed Make, C/C++ Indexer</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard - Managed Make, C/C++ Indexer</h1>
|
||||
<p>You can select which C/C++ Indexer to use for your project from this
|
||||
page of the wizard. The indexer is necessary for search and related
|
||||
features, like content assist.</p>
|
||||
<p><img src="../images/new_proj_wz_man_indexer.png"
|
||||
alt="New Project Wizard"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Available Indexers</b></td>
|
||||
<td>Selects the Indexer to use for this project; <b>No Indexer</b>
|
||||
disables indexing. Some indexers will display additional options below
|
||||
the indexer selection box.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" alt="Related concepts"
|
||||
width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngtasks.gif" alt="Related tasks"
|
||||
width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make
|
||||
Tutorial</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngref.gif" alt="Related reference"
|
||||
width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a
|
||||
Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery
|
||||
Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
<p>
|
||||
<img src="../images/ng00_05a.gif" alt="IBM Copyright Statement"></p>
|
||||
</body>
|
||||
</html>
|
|
@ -1,85 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Managed Make, Error Parsers</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard - Managed Make, Error Parsers</h1>
|
||||
<p>You can select which error parsers to use and in which order they
|
||||
are used for your project.</p>
|
||||
<p><img src="../images/new_proj_wz_man_error.png"
|
||||
alt="New Project Wizard, Error Parser"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Error Parsers</b></td>
|
||||
<td>Selects which Error Parsers to enable.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Up</b></td>
|
||||
<td>Moves the currently selected Error Parser higher in the
|
||||
ordered list.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Down</b></td>
|
||||
<td>Moves the currently selected Error Parser lower in the
|
||||
ordered list.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Select All</b></td>
|
||||
<td>Selects all Error Parsers.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Unselect All</b></td>
|
||||
<td>Unselects all Error Parsers.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" alt="Related concepts"
|
||||
width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngtasks.gif" alt="Related tasks"
|
||||
width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make
|
||||
Tutorial</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngref.gif" alt="Related reference"
|
||||
width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a
|
||||
Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery
|
||||
Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" alt="IBM Copyright Statement"></p>
|
||||
</body>
|
||||
</html>
|
|
@ -1,78 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Managed Make, Name</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard - Managed Make, Name</h1>
|
||||
<p>Select a name for the project. You can also enter a new path for
|
||||
your project by deselecting the <b>Use Default Location</b> checkbox
|
||||
and entering the new path in the <b>Location</b> text box.</p>
|
||||
<p><img src="../images/new_proj_wz_man_name.png"
|
||||
alt="New Project Wizard, Managed Make, Name"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Name</b></td>
|
||||
<td>Specifies the name of the project.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Use Default Location</b></td>
|
||||
<td>When selected, creates the new project in the default
|
||||
workspace location.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Directory</b></td>
|
||||
<td>If <b>Use Default Location</b> is not selected, specifies
|
||||
the location where the project is to be created.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" alt="Related concepts"
|
||||
width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngtasks.gif" alt="Related tasks"
|
||||
width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make
|
||||
Tutorial</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngref.gif" alt="Related reference"
|
||||
width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a
|
||||
Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery
|
||||
Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" alt="IBM Copyright Statement"></p>
|
||||
</body>
|
||||
</html>
|
|
@ -1,65 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Managed Make, Projects</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard - Managed Make, Referenced Projects</h1>
|
||||
<p>Select project references from your workspace.</p>
|
||||
<p><img src="../images/new_proj_wz_man_proj.png"
|
||||
alt="New Project Wizard, Managed Make, Referenced Projects"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Referenced C/C++ Projects</b></td>
|
||||
<td>If you have any other projects in your workspace, sets them
|
||||
as references for this new C or C++ project.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" alt="Related concepts"
|
||||
width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngtasks.gif" alt="Related tasks"
|
||||
width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make
|
||||
Tutorial</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngref.gif" alt="Related reference"
|
||||
width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a
|
||||
Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery
|
||||
Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" alt="IBM Copyright Statement"></p>
|
||||
</body>
|
||||
</html>
|
|
@ -1,74 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Managed Make, Select a Target</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard - Managed Make, Select a Project Type</h1>
|
||||
<p>You can select the type of project and build configurations from
|
||||
this page of the wizard.</p>
|
||||
<p><img src="../images/new_proj_wz_man_target.png"
|
||||
alt="New Project Wizard, Managed Make, Select a Project Type"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Project Type</b></td>
|
||||
<td>Specifies a project type from the list provided.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Configurations</b></td>
|
||||
<td>Specifies which build configurations will be supported for
|
||||
your project.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Show All Project Types</b></td>
|
||||
<td>If selected, lists all known project types in the <b>Project
|
||||
Type</b> list. By default, the list is filtered so that only project
|
||||
types that are buildable on the host system are shown.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Show All Configurations</b></td>
|
||||
<td>If selected, lists all known default configurations in the <b>Configurations</b>
|
||||
window. By default, the list is filtered so that only configurations
|
||||
that are buildable on the host system are shown.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" alt="Related concepts"
|
||||
width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngtasks.gif" alt="Related tasks"
|
||||
width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make
|
||||
Tutorial</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngref.gif" alt="Related reference"
|
||||
width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery
|
||||
Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
<p>
|
||||
<img src="../images/ng00_05a.gif" alt="IBM Copyright Statement"></p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Select Name and Location</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard - Select Name and Location</h1>
|
||||
<p>Select a name for the project. You can also enter a new path for
|
||||
your project by deselecting the <b>Use Default Location</b> checkbox
|
||||
and entering the new path in the <b>Location</b> text box.</p>
|
||||
<p><img src="../images/new_proj_wz_name.png"
|
||||
alt="New Project Wizard - Select Name and Location"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Name</b></td>
|
||||
<td>Specifies the name of the project.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Use Default Location</b></td>
|
||||
<td>When selected, creates the new project in the default
|
||||
workspace location.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Location</b></td>
|
||||
<td>If <b>Use Default Location</b> is not selected, specifies
|
||||
the location where the project is to be created.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif"
|
||||
ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">New CDT Project creation Tutorial - with generated makefile</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">New CDT Project creation Tutorial - with user's makefile</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz_name.htm">Set Project Name and Location</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_type.htm">Select Project type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_toolchain.htm">Select toolchain</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_config.htm">Select configurations</a><br>
|
||||
<p>
|
||||
<img src="../images/intl_07.gif" ALT="Intel Copyright Statement" >
|
||||
</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,74 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Standard Make, Binary Parser</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard - Standard Make, Binary Parser</h1>
|
||||
<p>You can select the Binary Parsers you require for the project. </p>
|
||||
<p>Select the appropriate binary parser to ensure the accuracy of the
|
||||
C/C++ Projects view and the ability to successfully run and debug your
|
||||
programs. After you select the correct parser for your development
|
||||
environment and build your project, you can view the symbols of the .o
|
||||
file in the C/C++ Projects view.</p>
|
||||
<p><img src="../images/new_proj_wz_std_binary.png"
|
||||
alt="New Project Wizard, Standard Make, Binary Parser"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Binary Parser</b></td>
|
||||
<td>Specifies the binary parsers that are enabled.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Binary Parser Options</b></td>
|
||||
<td>Specifies a binary parser's options, if any.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" alt="Related concepts"
|
||||
width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngtasks.gif" alt="Related tasks"
|
||||
width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make
|
||||
Tutorial</a><br>
|
||||
</p>
|
||||
<p><img border="0" src="../images/ngref.gif" alt="Related reference"
|
||||
width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a
|
||||
Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced
|
||||
Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery
|
||||
Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" alt="IBM Copyright Statement"></p>
|
||||
</body>
|
||||
</html>
|
|
@ -1,68 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Standard Make, C/C++ Indexer</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<h1>New Project Wizard - Standard Make, C/C++ Indexer</h1>
|
||||
<p>You can select which C/C++ Indexers to use for your project from this page of the wizard. The indexer is necessary for search and related features, like content assist.</p>
|
||||
|
||||
<p><img src="../images/new_proj_wz_std_indexer.png" alt="New Project Wizard, Standard Make, C/C++ Indexer"></p>
|
||||
|
||||
<p> <table border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><b>Enable C++ Indexing</b></td>
|
||||
<td>When selected C++ Indexing is enabled for this project.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Enable C++ Index problem reporting</b></td>
|
||||
<td>When selected, any index related errors detected will be reported.</td>
|
||||
</tr>
|
||||
</table></p>
|
||||
|
||||
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make Tutorial</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery Options</a><br>
|
||||
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" >
|
||||
</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,71 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Standard Make, Discovery Options</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<h1>New Project Wizard - Standard Make, Discovery Options</h1>
|
||||
<p>You can define the discovery options on the Discovery Options page of the C/C++ Preferences window.</p>
|
||||
|
||||
<p><img src="../images/new_proj_wz_std_dscovery.png" alt="New Project Wizard, Standard Make, Discovery Options"></p>
|
||||
<p> <table border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><b>Automate scanner configuration discovery</b></td>
|
||||
<td>Select this checkbox to configure the scanner discovery to run automatically.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Build output parser options</b></td>
|
||||
<td>This section allows you to select the output parser.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Generate scanner info command options</b></td>
|
||||
<td>This section allows you to select the scanner info settings.</td>
|
||||
</tr>
|
||||
</table></p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make Tutorial</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
|
||||
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" >
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,81 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Standard Make, Error Parsers</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<h1>New Project Wizard - Standard Make, Error Parsers</h1>
|
||||
<p>You can select which error parsers to use and in which order they are used for your project.</p>
|
||||
|
||||
<p><img src="../images/new_proj_wz_std_error.png" alt="New Project Wizard, Standard Make, Error Parsers"></p>
|
||||
|
||||
|
||||
<p> <table border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Error Parsers</b></td>
|
||||
<td>You can select which Error Parsers to enable from this window.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Up</b></td>
|
||||
<td>Moves the currently selected Error Parser higher in the ordered list.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Down</b></td>
|
||||
<td>Moves the currently selected Error Parser lower in the ordered list.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Select All</b></td>
|
||||
<td>Selects all Error Parsers.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Unselect All</b></td>
|
||||
<td>Unselects all Error Parsers.</td>
|
||||
</tr>
|
||||
</table></p>
|
||||
|
||||
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make Tutorial</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
|
||||
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" >
|
||||
</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,77 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Standard Make, Make Builder</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<h1>New Project Wizard - Standard Make, Make Builder</h1>
|
||||
<p>You can enter build configuration settings for your project from this page of the wizard.</p>
|
||||
|
||||
<p><img src="../images/new_proj_wz_std_makeb.png" alt="New Project Wizard, Standard Make, Make Builder"></p>
|
||||
|
||||
|
||||
<p> <table border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Build Command</b></td>
|
||||
<td>Specifies which <b>make</b> command to use when a build is performed.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Build Setting</b></td>
|
||||
<td>Controls whether the compiler will <b>Stop On Error</b> or to keep building.
|
||||
If you do not select <b>Stop On Error</b> this will force the compiler to attempt to build all referenced
|
||||
projects even if the current project has errors.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Workbench Build Behavior</b></td>
|
||||
<td>You can specify the behavior of builds predefined by the C/C++ toolkit
|
||||
by linking them to specific build targets in your makefile.
|
||||
The predefined builds are <b>Auto Build</b>, <b>Incremental Build</b>,
|
||||
<b>Rebuild</b> and, <b>Clean</b></td>
|
||||
</tr>
|
||||
</table></p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make Tutorial</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
|
||||
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" >
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,75 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Standard Make, Name</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<h1>New Project Wizard - Standard Make, Name</h1>
|
||||
<p>Select a name for the project. You can also enter a new path for your project by deselecting the <b>Use Default Location</b> checkbox and entering the new path in the <b>Location</b> text box.</p>
|
||||
|
||||
|
||||
<p><img src="../images/new_proj_wz_std_name.png" alt="New Project Wizard, Standard Make, Name"></p>
|
||||
|
||||
|
||||
<p> <table border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><b>Name</b></td>
|
||||
<td>Specifies the name of the project.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Use Default Location</b></td>
|
||||
<td>When selected the new project will be created in the default workspace location.</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Location</b></td>
|
||||
<td>If <b>Use Default Location</b> is not selected, enter the location where the project is to be created.</td>
|
||||
|
||||
</tr>
|
||||
</table></p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make Tutorial</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_proj.htm">Standard Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
|
||||
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" >
|
||||
</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,66 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard - Standard Make, Projects</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script language="JavaScript">
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<h1>New Project Wizard - Standard Make, Referenced Projects</h1>
|
||||
<p>Select project references from your workspace.</p>
|
||||
|
||||
<p><img src="../images/new_proj_wz_std_proj.png" alt="New Project Wizard, Standard Make, Referenced Projects"></p>
|
||||
|
||||
|
||||
<p> <table border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><b>Select Project References</b></td>
|
||||
<td>If you have any other projects in your workspace, you can select them as references for this new C or C++ project.</td>
|
||||
</tr>
|
||||
</table></p>
|
||||
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">CDT Managed Make Tutorial</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">CDT Standard Make Tutorial</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz.htm">New Project Wizard</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_target.htm">Managed Make, Select a Project Type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_proj.htm">Managed Make, Referenced Projects</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_m_cindexer.htm">Managed Make, C/C++ Indexer</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_name.htm">Standard Make, Name</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_mbuilder.htm">Standard Make, Make Builder</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_errorp.htm">Standard Make, Error Parsers</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_binary.htm">Standard Make, Binary Parser</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_discovery.htm">Standard Make, Discovery Options</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_s_cindexer.htm">Standard Make, C/C++ Indexer</a></p>
|
||||
|
||||
|
||||
<p>
|
||||
<img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" >
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard, Select a toolchain</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard, Select a toolchain</h1>
|
||||
<p>You can select toolchain(s) from this page of the wizard.</p>
|
||||
<p><img src="../images/new_proj_wz_toolchain.png"
|
||||
alt="New Project Wizard, Select a toolchain"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Toolchain</b></td>
|
||||
<td>Specifies toolchains available for selected project type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Show Project Types and toolchains only if they are supported on the platform</b></td>
|
||||
<td>If checked (default), list is filtered so that only toolchains
|
||||
that are buildable on the host system are shown.<br>
|
||||
If unchecked, lists all known toolchains.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif"
|
||||
ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">New CDT Project creation Tutorial - with generated makefile</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">New CDT Project creation Tutorial - with user's makefile</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz_name.htm">Set Project Name and Location</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_type.htm">Select Project type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_toolchain.htm">Select toolchain</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_config.htm">Select configurations</a><br>
|
||||
<p>
|
||||
<img src="../images/intl_07.gif" ALT="Intel Copyright Statement" >
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,57 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>New Project Wizard, Select a Project Type</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>New Project Wizard, Select a Project Type</h1>
|
||||
<p>You can select the type of project from this page of the wizard.</p>
|
||||
<p><img src="../images/new_proj_wz_type.png"
|
||||
alt="New Project Wizard, Select a Project Type"></p>
|
||||
<p>
|
||||
<table border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Project Type</b></td>
|
||||
<td>Specifies a project type from the list provided.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Show Project Types and toolchains only if they are supported on the platform</b></td>
|
||||
<td>If checked (default), list is filtered so that only project
|
||||
types that are buildable on the host system are shown.<br>
|
||||
If unchecked, lists all known project types in the <b>Project
|
||||
Type</b> list.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif"
|
||||
ALT="Related concepts" width="143" height="21"><br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br>
|
||||
<a href="../tasks/cdt_t_proj_platf.htm">Project types selection</a><br>
|
||||
<a href="../getting_started/cdt_w_basic.htm">New CDT Project creation Tutorial - with generated makefile</a><br>
|
||||
<a href="../getting_started/cdt_w_standard.htm">New CDT Project creation Tutorial - with user's makefile</a><br>
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"><br>
|
||||
<a href="cdt_u_new_proj_wiz_name.htm">Set Project Name and Location</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_type.htm">Select Project type</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_toolchain.htm">Select toolchain</a><br>
|
||||
<a href="cdt_u_new_proj_wiz_config.htm">Select configurations</a><br>
|
||||
<p>
|
||||
<img src="../images/intl_07.gif" ALT="Intel Copyright Statement" >
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -31,9 +31,14 @@
|
|||
<td valign="top">Prints the content of the current editor.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_create_c_class.png"></td>
|
||||
<td valign="top">Create C++ Class</td>
|
||||
<td valign="top">Creates a C++ class within the current project.</td>
|
||||
<td align="center" valign="top"><img src="../images/icon_build_all.png"></td>
|
||||
<td valign="top">Build All</td>
|
||||
<td valign="top">Builds all projects.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_create_cproject.png"></td>
|
||||
<td valign="top">New C/C++ project</td>
|
||||
<td valign="top">Creates New C/C++ project.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_create_folder.png"></td>
|
||||
|
@ -45,6 +50,21 @@
|
|||
<td valign="top">Create File</td>
|
||||
<td valign="top">Creates a file within the current project.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_create_c_class.png"></td>
|
||||
<td valign="top">Create C++ Class</td>
|
||||
<td valign="top">Creates a C++ class within the current project.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_build_sel.png"></td>
|
||||
<td valign="top">Build selected</td>
|
||||
<td valign="top">Builds active configurations of selected projects.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_manage_cfg.png"></td>
|
||||
<td valign="top">Manage configurations</td>
|
||||
<td valign="top">Displays Manage Build Configurations dialog.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_debug.png"></td>
|
||||
<td valign="top">Debug</td>
|
||||
|
@ -61,9 +81,10 @@
|
|||
<td valign="top">Launches the External Tools dialog box</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_open_type.png"></td>
|
||||
<td valign="top">Open Type</td>
|
||||
<td valign="top">Brings up the Open Type selection dialog to open a type in the editor. The Open Type selection dialog shows all types existing in the workspace. </td>
|
||||
<td align="center" valign="top"><img src="../images/icon_open_element.png"></td>
|
||||
<td valign="top">Open Element</td>
|
||||
<td valign="top">Brings up the Open Element selection dialog to open a type in the editor.
|
||||
The Open Elements selection dialog shows all elements existing in the workspace. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_search.png"></td>
|
||||
|
@ -71,9 +92,39 @@
|
|||
<td valign="top">Launches the C/C++ Search dialog box</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_synchronize.png"></td>
|
||||
<td valign="top">Synchronize</td>
|
||||
<td valign="top">Synchronizes selected project to CVS repository.</td>
|
||||
<td align="center" valign="top"><img src="../images/icon_wset_add.png"></td>
|
||||
<td valign="top">Add to working set</td>
|
||||
<td valign="top">Adds selected elements to a working set.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_wset_del.png"></td>
|
||||
<td valign="top">Remove from working set</td>
|
||||
<td valign="top">Removes selected elements from a working set.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_wset_edit.png"></td>
|
||||
<td valign="top">Modify working set</td>
|
||||
<td valign="top">Modify workbench working set.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_ws_chars.png"></td>
|
||||
<td valign="top">Show Whitspace characters</td>
|
||||
<td valign="top">Displays whitespace characters in the editor.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_show_selected.png"></td>
|
||||
<td valign="top">Show Selected Element</td>
|
||||
<td valign="top">Show source of Selected Element only</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_annotation_next.png"></td>
|
||||
<td valign="top">Next annotation</td>
|
||||
<td valign="top">Go to the next annotation in the editor.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_annotation_prev.png"></td>
|
||||
<td valign="top">Previous annotation</td>
|
||||
<td valign="top">Go to the previous annotation in the editor.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_last_edit_loc.png"></td>
|
||||
|
@ -90,16 +141,6 @@
|
|||
<td valign="top">Forward</td>
|
||||
<td valign="top">Navigates forward through open files.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_go_next_prob.png"></td>
|
||||
<td valign="top">Go to Next Problem</td>
|
||||
<td valign="top">Navigates to the next problem marked during the last build attempt.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><img src="../images/icon_go_prev_prob.png"></td>
|
||||
<td valign="top">Go to Previous Problem</td>
|
||||
<td valign="top">Navigates to the previous problem marked during the last build attempt.</td>
|
||||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
|
|
|
@ -17,27 +17,39 @@
|
|||
<p>To create a project:</p>
|
||||
|
||||
<ol>
|
||||
<li>Click <b>File > New > Project</b>.<br>
|
||||
<li>Click <b>File > New > Project</b>.
|
||||
<br>
|
||||
<br>
|
||||
<img src="../images/file_menu.png" alt="File >New > Project">
|
||||
<br>
|
||||
</li>
|
||||
<li>In the New Project wizard, click <b>C</b> or <b>C++</b>.</li>
|
||||
<li>Choose either a <b>Standard Make C++ Project </b> or a <b>Managed Make C++ Project</b>.<br>
|
||||
<li>In the New Project wizard, open <b>C</b> or <b>C++</b> folder and select corresponding project.
|
||||
<br>
|
||||
<br>
|
||||
<img src="../images/new_project_wizard.png" alt="New Project Wizard"></li>
|
||||
<br>
|
||||
<li>Click <b>Next</b>.</li>
|
||||
<li>In the <b>Name</b> box, type a name.</li>
|
||||
<li>In the <b>Project Name</b> box, type a name.</li>
|
||||
<li>To specify a different directory in which to save your project, clear the <b>
|
||||
Use Default Location</b> check box, and enter the path in the <b>Location</b>
|
||||
box.</li>
|
||||
<li>For Managed Make projects, click <b>Next</b> to select a project type and the
|
||||
default configurations. For more information, see <a href="cdt_t_proj_platf.htm">Selecting a
|
||||
<li>Select <b>Project type</b> on the left pane. For more information, see <a href="cdt_t_proj_platf.htm">Selecting a
|
||||
project type</a>.</li>
|
||||
<li>To create your project, click <b>Finish</b>.<br>
|
||||
<img src="../images/new_proj_wz_man_name.png" alt="Managed New Project Wizard"></li>
|
||||
<li>Select one or more toolchains from the list on the right pane.</li>
|
||||
<li>You can change build configurations list for the project. To do it, press <b>Next</b>.
|
||||
But usually you need not to do it.</li>
|
||||
<li>To create your project, click <b>Finish</b>.
|
||||
<br>
|
||||
<br>
|
||||
<img src="../images/new_proj_wz_name.png" alt="New Project Wizard"></li>
|
||||
</li>
|
||||
<br>
|
||||
<li>If a message box prompts
|
||||
you to switch perspectives, click <b>Yes</b>.<li>Define your project
|
||||
properties. For more information, see <a href="../reference/cdt_u_properties.htm">Defining
|
||||
project properties</a>.</ol>
|
||||
you to switch perspectives, click <b>Yes</b>.</li>
|
||||
<li>Define your project
|
||||
properties. For more information,
|
||||
see <a href="../reference/cdt_u_properties.htm">Defining project properties</a>.
|
||||
</ol>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">
|
||||
<br><a href="../concepts/cdt_c_projects.htm">CDT Projects</a>
|
||||
|
|
|
@ -14,21 +14,38 @@
|
|||
|
||||
<h1>Selecting a project type</h1>
|
||||
|
||||
<p>For Managed Make projects, you need to select the type of project that you plan to create, and the
|
||||
default configurations for your project.</p>
|
||||
<p>
|
||||
While creating CDT project project, you need to select its type.
|
||||
</p>
|
||||
<p>
|
||||
<img src="../images/cdt_select_type.png" alt="Select project type">
|
||||
</p>
|
||||
|
||||
<p>To select a project type:</p>
|
||||
<p>There can be the following types:
|
||||
<ul>
|
||||
<li>Executable - makefile is generated automatically
|
||||
<li>Shared library - makefile is generated automatically
|
||||
<li>Static library - makefile is generated automatically
|
||||
<li>Several specific types marked with rhombuses - makefile is generated automatically
|
||||
<li>Makefile project - requires user's makefile; output type depends of makefile contents.
|
||||
</ul>
|
||||
|
||||
<ol>
|
||||
<li>Select a project type from the list. By default, this dialog dispays only the project types
|
||||
<p>
|
||||
By default, this dialog dispays only the project types
|
||||
that are buildable on the system on which Eclipse is running.
|
||||
You can view all installed project types by selecting the <b>Show All Project Types</b> button.</li>
|
||||
<li>Select the configurations that you want added to your project.
|
||||
By default, this dialog dispays only the configurations
|
||||
that are buildable on the system on which Eclipse is running.
|
||||
You can view all default configurations by selecting the <b>Show All Configurations</b> button.</li>
|
||||
</ol>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">
|
||||
You can view all installed project types by unchecking the
|
||||
<b>Show Project Types and toolchains only if they are supported on the platform</b> box.
|
||||
</p>
|
||||
<p>
|
||||
Some project types (Executable and Makefile, in our case) can contain one or more templates
|
||||
(marked by disk). If you select template belonging to some project type, project of such type
|
||||
(executable, in our case) will be created, and additional template-specific source code will
|
||||
be generated.
|
||||
</p>
|
||||
|
||||
|
||||
<p>
|
||||
<img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">
|
||||
<br>
|
||||
<a href="../concepts/cdt_c_projects.htm">CDT Projects</a><br>
|
||||
<a href="../concepts/cdt_c_proj_file_views.htm">Project file views</a>
|
||||
|
|
|
@ -17,13 +17,26 @@
|
|||
<p>To rename a project:</p>
|
||||
|
||||
<ol>
|
||||
<li>In the C/C++ Projects view, right-click a project, and select <b> Rename</b>.<br>
|
||||
<img src="../images/project_rename.png" alt="Project Properties menu highlighting Rename"></li>
|
||||
<li>Type a new name.</li>
|
||||
<li>In the C/C++ Projects view, right-click a project, and select <b> Rename</b>.
|
||||
<br>
|
||||
<br>
|
||||
<img src="../images/project_rename.png" alt="Project Properties menu highlighting Rename"></li>
|
||||
<br>
|
||||
<br>
|
||||
<li>Editbox will be activated just on the project name. Type a new name.
|
||||
<br>
|
||||
<br>
|
||||
<img src="../images/project_rename2.png" alt="Renaming the Project"></li>
|
||||
<br>
|
||||
<br>
|
||||
</li>
|
||||
<li>Press <b>Enter</b>.</li>
|
||||
</ol>
|
||||
|
||||
<p><b>Note: </b>Renaming a project causes it to be re-indexed. This can take a significant amount of time for very large projects.</p>
|
||||
<p><b>Note: </b>
|
||||
Renaming a project causes it to be re-indexed.
|
||||
This can take a significant amount of time for very large projects.
|
||||
</p>
|
||||
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">
|
||||
<br>
|
||||
|
|
|
@ -91,21 +91,10 @@
|
|||
|
||||
<!-- NEW PROJECT WIZARD TOPICS -->
|
||||
<topic label="C/C++ New Project Wizard" href="reference/cdt_u_new_proj_wiz.htm">
|
||||
<topic label="Managed Make Projects" href="reference/cdt_o_new_mproj.htm">
|
||||
<topic label="Name" href="reference/cdt_u_new_proj_wiz_m_name.htm"/>
|
||||
<topic label="Select a Project Type" href="reference/cdt_u_new_proj_wiz_m_target.htm"/>
|
||||
<topic label="Referenced Projects" href="reference/cdt_u_new_proj_wiz_m_proj.htm"/>
|
||||
<topic label="C/C++ Indexer" href="reference/cdt_u_new_proj_wiz_m_cindexer.htm"/>
|
||||
</topic>
|
||||
<topic label="Standard Make Projects" href="reference/cdt_o_new_sproj.htm">
|
||||
<topic label="Name" href="reference/cdt_u_new_proj_wiz_s_name.htm"/>
|
||||
<topic label="Referenced Projects" href="reference/cdt_u_new_proj_wiz_s_proj.htm"/>
|
||||
<topic label="Make Builder" href="reference/cdt_u_new_proj_wiz_s_mbuilder.htm"/>
|
||||
<topic label="Error Parsers" href="reference/cdt_u_new_proj_wiz_s_errorp.htm"/>
|
||||
<topic label="Binary Parser" href="reference/cdt_u_new_proj_wiz_s_binary.htm"/>
|
||||
<topic label="Discovery Options" href="reference/cdt_u_new_proj_wiz_s_discovery.htm"/>
|
||||
<topic label="C/C++ Indexer" href="reference/cdt_u_new_proj_wiz_s_cindexer.htm"/>
|
||||
</topic>
|
||||
<topic label="Set Project Name and Location" href="reference/cdt_u_new_proj_wiz_name.htm"/>
|
||||
<topic label="Select Project type" href="reference/cdt_u_new_proj_wiz_type.htm"/>
|
||||
<topic label="Select Toolchain" href="reference/cdt_u_new_proj_wiz_toolchain.htm"/>
|
||||
<topic label="Select Configurations" href="reference/cdt_u_new_proj_wiz_config.htm"/>
|
||||
</topic>
|
||||
|
||||
|
||||
|
|