[C++] 템플릿 특수화에 관해서
·
Programming/C++
#include using namespace std; // [class] this is just original template template class A { public: A(alpha one, beta two) { cout
CMake MSB3073 SetLocal 오류 해결 방법.
·
Tools/Etc
[Windows / Visual Studio 환경에서 운용 시 버그] MSB 3073 오류는 CMake 가 Make 작업을 처리하는 도중 필요한 파일을 읽거나, 쓰는데에 있어서, 해당 파일들에 관해 '권한' 이 존재 하지 않을 때 발생하는 오류이다. CMake 실행, Visual Studio 실행과 같은 일련의 모든 과정들에 대해서 반드시 '관리자' 권한으로 실행할 것을 권장한다. 더해서 위와 같은 방법으로 완전히 해결이 되지 않을 수 있다. 그럴땐 다시 돌아가서, 반드시 실제 Build 하는 Visual Studio 의 버전과 CMake 에서 Configuration 시 사용했던 Visual Studio 버전을 같이 맞춰주어야 한다는 점을 명심하자. Visual Studio 도 여러 버전이 나오면서 같..
Visual Studio 2013, 2015 완벽하게 삭제하기.
·
Tools/Etc
Visual Studio 2013, 2015 를 제거할때 /uninstall /force 커맨드를 이용해서 제거 할텐데, 이러면 모든 요소가 제거되지 않는다. microsoft/VisualStudioUninstaller Visual Studio Uninstallation sometimes can be unreliable and often leave out a lot of unwanted artifacts. Visual Studio Uninstaller is designed to thoroughly and reliably remove these unwanted arti... github.com 이럴 땐 MS에서 직접 제공하는 VisualStudio Uninstaller 를 이용하면 거의 완벽에 가깝게 프로..