Windows에서 CMake를 사용하여 C++ 프로젝트 빌드
2116 단어 cpptutorialbeginnersprogramming
설명
기본 구조 사용:
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
Reference
이 문제에 관하여(Windows에서 CMake를 사용하여 C++ 프로젝트 빌드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/srele96/build-c-project-using-cmake-on-windows-1jl4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)