Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 569a4240caee723d8d2792689beec6da0f17dbe6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!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</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.
To access the wizard, from the menu bar select
<b>File > New > Project</b>.
The <b>New Project</b> wizard appears:
</p>

<p><img src="../images/new_project_wizard.png" alt="New Project Wizard"></p>

<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>
</ul>

<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">Managed Make Hello World Tutorial</a><br>
<a href="../getting_started/cdt_w_standard.htm">Standard Make Hello World 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_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>


<p>
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
</p>



</body>
</html>

Back to the top