목록개발이야기 (529)
준호씨의 블로그
git 에서는 기본적으로 대소문자 변경해도 같은 파일로 인식한다. podfile 을 Podfile 로 바꾸고 싶어서 mv podfile Podfile 해도 바뀐 파일로 인식 하지 않는다. 이럴 때는 force 옵션으로 강제 변환이 가능하다. git mv --force podfile Podfile
dotnet sdk 설치 brew cask install dotnet-sdk https://www.microsoft.com/net/learn/get-started/macos 에서 "Download .NET SDK" 로 다운 받아서 설치 해도 된다. app 만들기 $ dotnet new console -o myApp $ cd myApp 다음과 같은 파일들이 생성된 것을 볼 수 있다. $ tree . ├── Program.cs ├── myApp.csproj └── obj ├── myApp.csproj.nuget.cache ├── myApp.csproj.nuget.g.props ├── myApp.csproj.nuget.g.targets └── project.assets.json 1 directory, 6 fi..
CMakeLists.txt 에서 다음 내용이 있으면 CURL 라이브러리 경로 등의 정보를 찾아서 find_package(CURL REQUIRED) 아래의 변수에 할당 해 준다. CURL_INCLUDE_DIRS - where to find curl/curl.h, etc. CURL_LIBRARIES - List of libraries when using curl. CURL_FOUND - True if curl found. CURL_VERSION_STRING - the version of curl found (since CMake 2.8.8) CURL_LIBRARY 은 언급 되고 있지는 않은데 CURL_LIBRARIES 과 CURL_LIBRARY 은 같은 것으로 보인다. 문서상 CURL_LIBRARIES 사용..
https://tutorial.djangogirls.org/ko/ 내용 참고 해서 서버 구동까지 실습 해 보았다. python 설치 brew 가 있으면 brew 로 설치 하면 편하다. (brew 를 아직 설치 하지 않았다면 osx - homebrew 설치 참고) $ brew install python https://www.python.org/downloads/release/python-365/ 에서 다운 받아서 직접 설치 해도 됨 virtual environment 설치 (venv) $ python3 -m pip install --user virtualenv virtual environment 세팅 (venv) # 프로젝트 폴더 만들고 그 폴더로 이동 $ mkdir myproject $ cd myproj..