Third Party Tool(7)
-
[svn] svn 서버 설치
https://www.visualsvn.com/server/download/ VisualSVN Server | Download New in VisualSVN Server 4.2 Finding files by name in the web interface. Viewing the background jobs history. PowerShell support for local Subversion accounts. Read the full release notes... System Requirements Operating Systems Windows Server 2008 R2 – 201 www.visualsvn.com svn 홈페이지에 접속해서 svn server 설치파일을 받는다. svn 서버를 설치한다. 설..
2020.05.07 -
[ConEmu] ConEmu 설치하기
https://conemu.github.io/ ConEmu - Handy Windows Terminal ConEmu-Maximus5 is a full-featured local terminal for Windows devs, admins and users. Get better console window with tabs, splits, Quake style, copy+paste, DosBox and PuTTY integration, and much more. conemu.github.io 우선 ConEmu의 홈페이지에 접속한다. Installer를 다운받는다.
2019.08.28 -
[svn] branch 설정
게임 서비스 준비중에 branch를 사용하게 되는 경우는 여러 방향이 있을것 같은데 현재 진행하고 있는 프로젝트에서 가지치기로 프로젝트를 다른방향으로 만들고 합치려고 보통 사용하게 된다. 라이브 서비스 버전, QA 테스트 버전, 검수 버전, 개발 서버 버전, 내 로컬 버전 등등 하나의 게임을 만들더라도 프로젝트의 속성에 따라서 소스코드를 다른 버전으로 관리해야 하는 경우가 있는데 이 때 사용하게되는 것이 branch이다. 현재 작업중인 svn에서 TortoiseSVN -> Branch/tag... 버튼을 누르게 되면 branch를 만들 수 있는 창이 나오게 된다. To Path: 에서 ... 버튼을 눌러서 Repository Browser를 열어준다. Create folder를 하여 branches 폴더..
2019.08.06 -
[vcpkg] vcpkg 명령어, 팁
vcpkg list - 현재 vcpkg에 설치되어있는 항목들을 보여준다 vcpkg instsall [패키지명]:[버전] - [패키지]를 설치한다 - 버전에는 x86-windows, x64-windows가 들어가면 된다. vcpkg remove [패키지명] - [패키지]를 삭제한다. vcpkg integrate install - vcpkg에 설치된 항목들을 visual studio에 바인딩해준다. - 새로 vcpkg에서 패키지를 받았으면 반드시 integrate를 해주어 visual studio에서 가져다 쓸 수 있도록 해주어야 한다.
2019.07.19 -
[vcpkg] vcpkg 설치
https://github.com/Microsoft/vcpkg microsoft/vcpkg C++ Library Manager for Windows, Linux, and MacOS. Contribute to microsoft/vcpkg development by creating an account on GitHub. github.com 깃헙에서 다운 받는다. clone을 완료 했으면 booststrap-vcpkg.bat 파일을 실행하여 vcpkg를 인스톨 해준다. 바로 cmd창에서 vcpkg 명령어를 날려보면 찾을 수 없다. 시스템 환경 변수 편집 창으로 이동한다. 시스템 환경 변수 편집 창에서 환경 변수를 눌러준다. Path를 선택해서 편집을 눌러준다. 새로 만들기를 누른 후, vcpkg clone을 ..
2019.07.19 -
[CMake] Windows에서 CMake 설치하기
https://cmake.org/ CMake CMake is an open-source, cross-platform family of tools designed to build, test and package software. CMake is used to control the software compilation process using simple platform and compiler independent configuration files, and generate native makefile cmake.org 우선 위에 링크된 CMake 홈페이지 접속을 한다. 상단에 Download를 누른다. Windows win64-x64 ZIP를 선택하여 다운받고, 압축을 풀어준다. 압축을 풀고 나면 bin ..
2019.04.30