1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Doc update.

This commit is contained in:
Doug Schaefer 2007-06-21 02:59:37 +00:00
parent e2630a179e
commit 9a38c3c371

View file

@ -11,14 +11,16 @@ function newWin(url) {
</script>
</head>
<body>
<h2>Tutorial: Creating a simple application using the CDT</h2>
<h2>Tutorial: Creating a simple application</h2>
<p>In this tutorial, you will use the CDT to create a simple 'Hello World' application. This tutorial describes the process of creating a new C++ project where the makefile is automatically created by the CDT.</p>
<p>In this tutorial, you will use the CDT to create a simple 'Hello World' application.
This tutorial describes the process of creating a new C++ project where the build is
automatically managed by the CDT.</p>
<p>Note: In an earlier version of the CDT, there were two separate project types: Managed make (automatically generated a makefile) and Standard make (required the user's makefile to build). In CDT 4.0, both of these types are combined; basically, the only available project type can be changed to Managed make or Standard make mode at any given time. </p>
<p>If you do not currently have the CDT installed, see the topic <a href="javascript:void(0)" onClick="newWin('cdt_w_install_cdt.htm')">Installing and updating the CDT</a>.
</p>
<p>Note: In earlier versions of the CDT, there were two separate project types:
Managed make (automatically generated a makefile)
and Standard make (required the user's makefile to build).
With CDT 4.0, you now select a project type, and that determines what build system will be used.</p>
<p>To create a simple "Hello World" application using the CDT, you will perform the following steps:</p>