From the course: C++ IDE Overview

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Project layout

Project layout

From the course: C++ IDE Overview

Start my 1-month free trial

Project layout

- [Instructor] Let's learn how Eclipse project and file structures are stored. If you have an open project please close it. Right click, close project. Now let's create a new one. File. New C++ Project, C++ Managed Build, next, we're going to call this one averages. We're going to make sure that Cygwin GCC is selected and click finish. Now we're going to open up file explorer. We're going to go to exercise O4O5. Do a control A to select both. Control C to copy them. Go back into Eclipse, and we're going to expand the averages project, expand the source folder, click the source folder, and do a control V, command V on the Macintosh and select override all. Then we're going to right click on the project name. Do a build project. This project reads a text file with all of the test scores and calculates the average score. It needs to be able to open the file test-scores.text which is in the source folder. If it is unable to find the text file an error is displayed. Let's try it out. We're…

Contents