I am Charmie

メモとログ

Visual Studio

Visual Studio 2015 with CMake

right after you installed visual studio 2015, CMake cannot find C and C++ compiler of it because Visual Studio 2015 installer didn't install any compiler. Although I have no ideas this is due to default or my install setting, I found the s…

gflags with Visual Studio

Run CMake Run Visual Studio as a superuser Open gflags.sln with Visual Studio Batch build ALL_BUILD, INSTALL, and RUN_TESTS The result is as folllows: ------ Rebuild All started: Project: INSTALL, Configuration: Release x64 ------ -- Insta…

CMake + Visual Studio from command prompt

[code lang="bash"] cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Debug nmake [/code]

Visual Studio 2010: highlighting a variable

Go Tool -> Extension Manager -> Online Gallery Select "Highlight all occurrences of selected word" and install it. Result is as follows:

CMake + Visual Studio on command line

If you compile source code on command prompt with CMake and Visual Studio, you should specify some options as follows: cmake -G "NMake Makefiles" . nmake -G option specifies a makefile generator.

levmar 2.6 with Visual Studio 2010

memo for compiling levmar 2.6 on windows with visual studio 2010. we need to modify the code a bit for compilation!!! .lib files CmakeLists.txt of levmar 2.6 assumes that you put all lapack related .lib files into one directory. In Cmake G…

Visual Studio 2010: switch development environment

How to switch development environment from/to C++ to/from C# is Tools->Import and Export Settings ... Choose a radio button "Import selected environment settings" and click Next Choose either save current settings or not (yes is better) an…

Magick++ (ImageMagick C++ API) install

Installation of Magick++ that is C++ API of ImageMagick. I installed ImageMagick version 6.7.7-3 with Visual Studio 2008 under Windows7 64bit. Download the source files ImageMagick web Go to Download page from left side bar and go to a mir…

Using levmar 2.6 with Visual Studio

On my previous post, I posted how to compile levmar 2.5 with visual studio 2010. Since the procedure mentioned there is not enough to compile levmar 2.6, I write how to solve the compilation issue even though the chips is written on levmar…

freeglut for OpenGL (GLSL) + Visual Studio 2010 on 64bit

freeglutを使ってVisual Studio 2010でのOpenGL(GLSL)環境のセットアップを試みる.同じ内容で書いたことがあるけど,freeglutが2.6.0から2.8.0にバージョンアップされてセットアップが容易になっていたのでメモ. 以下で{VC Root}は 32bit C:\Program Files…

levmar with Visual Studio 2010

levmarのコンパイルには2つのステップが必要: LAPACKのインストールとlevmarのコンパイル.LAPACKではなくCLAPACKを使ってlevmarを使ってみる(LAPACKを自前でセットアップするにはfortranのコンパイラやら何やらが必要みたいだけど,調べてて頭が痛くなって…

Using levmar with Visual Studio 2010

levmar compilation requires two steps: LAPACK installation and levmar compilation. Here, I use CLAPACK instead of LAPACK for ease of setup but any types of CLAPACK might be fine. CLAPACK installation There are several options to build CLAP…

OpenGL (GLSL) + Visual Studio 2010 on 64bit

Visual Studio 2010 + OpenGL(GLSL)のセットアップ. 以下で{VC Root}は 32bit C:\Program Files\Microsoft Visual Studio 10\VC 64bit C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A を表すものとする. GLUTのインストール GLUT(OpenGL Utility To…

OpenGL for Visual Studio 2010

Visual Studio 2010 + OpenGLのセットアップ.1. GLUTのインストールGLUT(OpenGL Utility Toolkit)はOpenGLでプログラムを書くためのツールキット.オリジナルのglutの開発は2001年ぐらいから進んでいなさそうなので,代わりにfreeglutをインストールする.1…

OpenCV 2.2 with Visual Studio 2010

Intel TBB (Threading Building Blocks)のインストールMulti coreを使うためのライブラリ?Download/Stable versionのページから最新のバージョン(tbb30_20110315oss)を選ぶ.http://threadingbuildingblocks.org/file.php?fid=77該当するOSのファイル(tbb3…

VS2008のプロジェクトを2005で開く

slnファイルとvcprojファイルを修正する.sln 2行目バージョン情報 2008: 10.00 2005: 9.00 3行目 2008: # Visual Studio 2008 2005: # Visual Studio 2005vcproj 5行目Version 2008: 9.00 2005: 8.00 9行目TargetFrameWOrkVersion 2008: 196613(この数字は…

Visual Studioで箱型選択

Visual Studioでテキストの箱型選択が出来る.やり方は,Altキーを押しながらドラッグ.そこまで使う機会があるか分からないけど,いざという時のために覚えておこう.