나의 작은 valley

[그래픽스] vcpkg설치법, imgui 설치법 본문

그래픽스(graphics)/그래픽스(Graphics) part 1

[그래픽스] vcpkg설치법, imgui 설치법

붕옥 아이젠 2022. 11. 9. 11:40
728x90

(Visual Studio 설치 생략)

 

-vcpkg & imgui

https://github.com/microsoft/vcpkg

 

GitHub - microsoft/vcpkg: C++ Library Manager for Windows, Linux, and MacOS

C++ Library Manager for Windows, Linux, and MacOS. Contribute to microsoft/vcpkg development by creating an account on GitHub.

github.com

 

1. 명령 프롬포트(cmd)를 연다

 

 

2.vcpkg 다운받기

git clone https://github.com/microsoft/vcpkg

 

 

3.cd vcpkg를 친다. (vcpkg 파일로 이동)

 

 

4. 다음을 입력

bootstrap-vcpkg.bat

cf) .bat: window에서 실행 할 수 있는 파일을 의미

     .sh: mac에서 실행 할 수 있는 파일을 의미

 

 

5. vcpkg에 imgui가 있는지 확인

vcpkg search imgui

 

 

6.원하는 window 버전과 direct x 버전을 고른다

 

 

 

7. vcpkg를 이용해 imgui 설치

vcpkg install imgui[win32-binding,dx11-binding]:x64-windows

 

 

8.vcpkg를 Visual studio 에서 사용하게 해줌

vcpkg integrate install

 

728x90
Comments