728x90
What is a Project?
Project = container that holds my source code files, images, data files, etc.... that are needed to produce an executable(or library, website, etc...) that can be run or used. Also contains various compilers, linker settings, or IDE configurations.
Generally, project is IDE specific.
Therefore, 1 project = 1 program.
What is a Console Project?
Console Project = Project that is intended to make programs that can be run on Windows, Linux, or Mac console.
What is a Workspace? or Solution?
IDE에서 project를 생성할 경우 project는 workspace(또는 solution)이라는 곳에 추가된다.
예를 들어, 게임을 만드는데 싱그 플레이어용 게임과 2인 플레이어용 게임, 2개의 executables을 만들고 싶다면 하나의 workspace에 2개의 프로젝트를 만들 수 있다.
'C++' 카테고리의 다른 글
C++ Standard Library란 (0) | 2024.02.24 |
---|---|
build, clean, rebuild, compile, run/start (0) | 2024.02.19 |
C++ IDE 설치하기 (1) | 2024.02.19 |
C, C++ 개발 workflow (0) | 2024.02.19 |
C, C++의 철학과 역사 (0) | 2024.02.18 |