Windows에서 CMake를 사용하여 C++ 프로젝트 빌드

Windows에서 CMake 및 CMakeLists.txt를 사용하여 기본 프로젝트 구조를 빌드합니다. C++ 프로젝트 구조를 빌드하고 실행하기 위해 수행한 짧고 간결한 단계입니다.

설명



기본 구조 사용:

building-with-cmake/
building-with-cmake/.gitignore
building-with-cmake/README.md

building-with-cmake/CMakeLists.txt
building-with-cmake/source
building-with-cmake/source/CMakeLists.txt
building-with-cmake/source/main.cpp


CMake를 사용하여 프로젝트를 빌드하는 방법을 배웁니다. 이것처럼 적어도 작은 것.

목표



코드를 빌드하고 실행합니다.

빌드 단계



Windows 컴퓨터에서 이 샘플을 만들었습니다. 관련 정보인 것 같아요.

디렉토리를 처음 열 때



다음 순서로 단계를 실행하십시오.

@REM this is a comment

@REM create directory
mkdir build

@REM go to directory
cd build

@REM setup the project
cmake ..

@REM build the program
cmake --build .

@REM run the program
Debug\building-with-cmake


빌드 디렉토리를 생성한 후



다음을 실행합니다.

@REM build the program, probably after code change
cmake --build .

@REM run the program
Debug\building-with-cmake


또는 한 단계 더 실행해야 할 수도 있습니다. 아마 우리가
CMakeLists를 변경합니다. 잘 모르겠습니다.

@REM setup the project
cmake ..

@REM build the program
cmake --build .

@REM run the program
Debug\building-with-cmake

좋은 웹페이지 즐겨찾기