본문 바로가기

2017/05

VS2013 멀티바이트(MultiByte) 설정 사용하기 위한 준비단계 출처 : http://intra97.tistory.com/240 VS2013에서 MBCS(Multi-Byte Character Set)로 설정된 MFC 프로젝트를 컴파일하면 다음과 같은 에러 발생한다.error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=286820 for more information. C:\Program Files (x86)\MSBuild\Microsoft.Cp.. 더보기
[PCL] 'static_cast': cannot convert from 'double' to 'pcl::visualization::LookUpTableRepresentationProperties 출처 : http://blog.csdn.net/Linear_Luo/article/details/52658984 PCL 1.8.0을 빌드하다보면 아래와 같은 에러가 발생한다. 'static_cast': cannot convert from 'double' to 'pcl::visualization::LookUpTableRepresentationProperties 12if (!pcl::visualization::getColormapLUT (static_cast(value), table)) break;Colored by Color Scriptercs 이때는 다음과 같이 해주면 된다.1static_cast(int(value))csint를 붙여준다! 더보기
CMake로 프로젝트 생성 후 프로젝트 INSTALL Error 출처 : http://egloos.zum.com/g0mug0mu/v/6146556 Error102error MSB3073: The command "setlocal"C:\Program Files (x86)\CMake\bin\cmake.exe" -DBUILD_TYPE=Debug -P cmake_install.cmakeif %errorlevel% neq 0 goto :cmEnd:cmEndendlocal & call :cmErrorLevel %errorlevel% & goto :cmDone:cmErrorLevelexit /b %1:cmDoneif %errorlevel% neq 0 goto :VCEnd:VCEnd" exited with code 1.C:\Program Files (x86)\MSBuild\Micro.. 더보기