분류 전체보기
-
Linux에서 chromium 빌드 하기공장 이야기 2015. 12. 30. 14:33
우선 난 /에 즉 루트 폴더에 project 폴더를 만들고 시작... 모든 작업은 project 폴더를 기준으로 한다. Window만 사용한 난 무지 헤매였음... Ubuntu desktop-amd64를 설치하고 시작하였다. 참고 사이트 http://dev.chromium.org/developers/how-tos/get-the-code https://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/depot_tools_tutorial.html#_setting_up depot_tools 받기 Terminal 열고 depot_tools 을 받을 장소에서 아래내요을 입력 git clone https://chromium...
-
Node.JS 설정 변경 시공장 이야기 2015. 8. 11. 14:54
- Node.JS Install 설치 경로 변경 ex)Z:\nodejs - 환경 설정 변경 npm config set cache z:\npm-cache npm config set tmp z:\npm-tmp - nodevars.bat 변경 rem set PATH=%APPDATA%\npm;%~dp0;%PATH% set PATH=z:\npm;%~dp0;%PATH% set TMP=z:\\npm-tmp set TEMP=z:\\npm-tmp - npm install npm install -g grunt-cli (필요 시 추가 cordova, plugman, plugman) npm install
-
-
-
webkit Visual Studio 빌드 시 오류.공장 이야기 2014. 6. 16. 09:56
webkit 소스의 초점은 Visual Studio가 아니다. 그래서 Visual Studio로 빌드 시 이상한 오류를 만나게 된다... 아래는 대표적인 오류 이다... String contextMenuItemTagLookUpInDictionary(const String& selectedString) { #if USE(CF) RetainPtr<CFStringRef> selectedCFString = truncatedStringForLookupMenuItem(selectedString).createCFString(); ret..