Programming
-
Visual Studio Code 설치하기 (Windows 10)Programming/Setup 2021. 10. 19. 14:22
Visual Studio Code를 설치해봅시다~ https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 먼저 Visual Studio Code를 다운로드 합니다. OS에 따라 설치 패키지를 선택하여 다..
-
[Go] Go 실행 파일 설치 ( go get ~ -> go install ~)Programming/Go 2021. 10. 19. 12:20
1. go get Golang을 다운로드 받고 실행 파일을 설치하려고 할 때 "go get golang.org/x/tools/cmd/... " 명령어를 사용해서 설치하라는 정보가 많이 나올겁니다. 저도 검색해가면서 설치해서 처음에는 go get~ 을 사용해서 실행 파일을 설치했습니다. 설치 파일이 다운로드는 됬지만 마지막에 go get: installing executables with 'go get' in module mode is deprecated. Use 'go install pkg@version' instead. For more information, see https://golang.org/doc/go-get-install-deprecation or run 'go help get' or 'go..
-
[Go] Golang 시작하기 1 ( go1.17.2 설치 )Programming/Go 2021. 10. 19. 10:43
Golang 을 사용하기 전에 먼저 해야할일! Golang을 설치해봅시다. https://golang.org/dl/ Downloads - The Go Programming Language Downloads After downloading a binary release suitable for your system, please follow the installation instructions. If you are building from source, follow the source installation instructions. See the release history for more information about Go releases golang.org 자신의 OS 환경에 따라 선택해주면 됩니다. ..
-
Jsoncpp 적용하기 (Visual Studio 2017) 방법1Programming/c++ 2021. 9. 14. 12:19
필요한 파일 : jsoncpp.lib, include 폴더 jsoncpp.lib파일을 아직 빌드하지 않았다면 https://code-space.tistory.com/entry/Jsoncpp-%EB%B9%8C%EB%93%9C Jsoncpp 빌드 visual studio 2017 프로젝트에 Jsosncpp 오픈 소스를 적용하기 위해서 먼저 Jsoncpp를 빌드해야합니다. 방법은 여러가지가 있는데 저는 그중에서 CMake를 이용해서 빌드하려고 합니다. 가장 많이 사용하는 code-space.tistory.com 위 과정을 먼저 진행해주세요~ jsoncpp open source에 있는 include 폴더 와 jsoncpp.lib 를 사용하여 프로젝트에 적용하겠습니다. 1. jsoncpp 에 있는 include ..
-
Jsoncpp 빌드Programming/c++ 2021. 9. 13. 14:04
visual studio 2017 프로젝트에 Jsosncpp 오픈 소스를 적용하기 위해서 먼저 Jsoncpp를 빌드해야합니다. 방법은 여러가지가 있는데 저는 그중에서 CMake를 이용해서 빌드하려고 합니다. 가장 많이 사용하는 Json 오픈 소스인 Jsoncpp git 사이트에 접속합니다. https://github.com/open-source-parsers/jsoncpp GitHub - open-source-parsers/jsoncpp: A C++ library for interacting with JSON. A C++ library for interacting with JSON. Contribute to open-source-parsers/jsoncpp development by creating an..
-
CMake 설치하는 방법 (Windows)Programming/Setup 2021. 9. 13. 11:59
Windows(윈도우) OS에 CMake를 설치하는 방법 CMake 공식 홈페이지에 접속합니다. https://cmake.org/download/ Download | CMake Current development distribution Each night binaries are created as part of the testing process. Other than passing all of the tests in CMake, this version of CMake should not be expected to work in a production environment. It is being produced so that us cmake.org 다운로드 페이지에 운영체제별로 CMake 파일들이 있습니다..