나의 작은 valley
[그래픽스] vcpkg설치법, imgui 설치법 본문
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
'그래픽스(graphics) > 그래픽스(Graphics) part 1' 카테고리의 다른 글
[그래픽스] 1차원 배열을 2차원 배열처럼 사용하기 (0) | 2022.11.13 |
---|---|
[그래픽스] INTRO (0) | 2022.11.09 |
Comments