[VC++] 미리 컴파일된 헤더를 쓰려면

  • Post author:
  • Post category:
  • Post comments:2 Comments
  • Post last modified:October 9, 2007

미리 컴파일된 헤더를 안 쓰게 구성되어 있는 Visual Studio 프로젝트를 손보고 싶을 때가 있다. 이렇게 하면 된다(영문판 기준).

  1. 프로젝트 속성(Properties)메뉴에 들어간다.

  2. C++/Precompiled Headers에서 Use Precompiled Header (/Yu)를 선택한다. Visual Studio의 기본 구성에 따르면 Create/Use PCH Through FileStdAfx.h로, Precompiled Header File$(IntDir)\$(TargetName).pch로 설정한다. 옵션 값은 바꿔도 상관 없지만, 여기선 기본값을 쓴다.

  3. 프로젝트에 stdafx.h 파일과 stdafx.cpp 파일을 추가한다.

  4. stdafx.cpp을 선택하고 속성 메뉴에 들어간다. Precompiled Headers에서 Create Precompiled Header (/Yc)를 선택한다. Create/Use PCH Through FilePrecompiled Header File에는 앞서 적은 값이 들어있을텐데 그대로 놔둔다.

Author Details
Kubernetes, DevSecOps, AWS, 클라우드 보안, 클라우드 비용관리, SaaS 의 활용과 내재화 등 소프트웨어 개발 전반에 도움이 필요하다면 도움을 요청하세요. 지인이라면 가볍게 도와드리겠습니다. 전문적인 도움이 필요하다면 저의 현업에 방해가 되지 않는 선에서 협의가능합니다.
0 0 votes
Article Rating
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

2 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
novice
15 years ago

하루정도 이문제 때문에 헤맸는데, 덕분에 해결하고 갑니다~ 감사합니다~

최재훈
15 years ago

알면 쉬운데 모르면 답답하죠. ^^