공부중

pthread를 VisualStudio2022에서 사용하기. 본문

Programing

pthread를 VisualStudio2022에서 사용하기.

곤란 2024. 11. 29. 16:08
반응형
vcpkg install pthreads:x64-windows

관리자 권한의 명령 프롬프트에서 vcpkg를 이용해 설치하면 된다.

아마 vcpkg 기본 설치가 x86-windows이지만

VS2022의 기본 활성 솔루션 플랫폼은 x64이므로 뒤에 x64-windows를 붙혀주면 된다.

패키지가 설치 되었으면 그냥 위 스크린샷처럼 사용하면 된다 빌드 성공한 모습.

 

물론 F12로 헤더 내용도 볼 수 있다.


vcpkg를 설치(?)하는 방법은 이전글을 참고하자.

https://hannom.tistory.com/243

 

vcpkg를 설치(?)하는 방법

https://github.com/microsoft/vcpkg GitHub - microsoft/vcpkg: C++ Library Manager for Windows, Linux, and MacOSC++ Library Manager for Windows, Linux, and MacOS. Contribute to microsoft/vcpkg development by creating an account on GitHub.github.com 위의

hannom.tistory.com

 

 

 


 

참고.

https://learn.microsoft.com/en-us/answers/questions/1262076/how-to-use-pthred-h-on-visual-studio-2022

 

How to use pthred.h on Visual Studio 2022? - Microsoft Q&A

Hi, I use Visual Studio 2022. When I include pthread.h file, following error occurs. How can resolve this? I installed vcpkg but the same error occurs. pthreadVC3.lib: No such file or…

learn.microsoft.com

 

 

 

 

반응형