(C++ : TIPS) VisualStudio에서 cpp/h 파일 이외의 파일 변화 감지하기 (Ex> .proto)

Posted by : at

Category : Cpp


.vcproj파일을 편집기에서 연다

// ...

    <ClInclude Include="Struct.pb.h" />
  </ItemGroup>
  <ItemGroup>
    <None Include="..\Common\Protobuf\bin\Enum.proto" />
    <None Include="..\Common\Protobuf\bin\GenPackets.bat" />
    <None Include="..\Common\Protobuf\bin\Protocol.proto" />
    <None Include="..\Common\Protobuf\bin\Struct.proto" />
  </ItemGroup>
  <ItemGroup>
    <UpToDateCheckInput Include="..\Common\Protobuf\bin\Enum.proto" />
    <UpToDateCheckInput Include="..\Common\Protobuf\bin\Protocol.proto" />
    <UpToDateCheckInput Include="..\Common\Protobuf\bin\Struct.proto" />
  </ItemGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  <ImportGroup Label="ExtensionTargets">
  </ImportGroup>
</Project>
  <ItemGroup>
    <UpToDateCheckInput Include="..\Common\Protobuf\bin\Enum.proto" />
    <UpToDateCheckInput Include="..\Common\Protobuf\bin\Protocol.proto" />
    <UpToDateCheckInput Include="..\Common\Protobuf\bin\Struct.proto" />
  </ItemGroup>

를 추가하면 파일의 변화를 감지후 재 빌드해준다.


About Taehyung Kim

안녕하세요? 8년차 현업 C++ 개발자 김태형이라고 합니다. 😁 C/C++을 사랑하며 다양한 사람과의 협업을 즐깁니다. ☕ 꾸준한 자기개발을 미덕이라 생각하며 노력중이며, 제가 얻은 지식을 홈페이지에 정리 중입니다. 좀 더 상세한 제 이력서 혹은 Private 프로젝트 접근 권한을 원하신다면 메일주세요. 😎

Star
Useful Links