ITK/Configuring and Building/VisualStudio: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Daviddoria (talk | contribs) No edit summary |
(slightly better formatting) |
||
Line 5: | Line 5: | ||
* Next to "Where to build the binaries:", select "Browse Build..." and select a place to build the ITK library. I like to use c:\build\ITK. This directory should NOT be inside the directory where you cloned the repository. | * Next to "Where to build the binaries:", select "Browse Build..." and select a place to build the ITK library. I like to use c:\build\ITK. This directory should NOT be inside the directory where you cloned the repository. | ||
* Click "Configure", and then specify "Visual Studio 10" as the generator for this project. | * Click "Configure", and then specify "Visual Studio 10" as the generator for this project. | ||
* Choose your build options. I like to | * Choose your build options. I like to '''uncheck''' BUILD_EXAMPLES and BUILD_TESTING, because not building them speeds up the build process significantly. | ||
* Click "Generate". | * Click "Generate". | ||
* Open Visual Studio 2010 | * Open Visual Studio 2010 |
Revision as of 21:16, 8 March 2016
With Visual Studio 2010 on Windows 7 (32-bit):
- Launch the CMake GUI by starting a Visual Studio Command Prompt (Start->Programs-> Microsoft Visual Studio 2010->Visual Studio Tools->Visual Studio Command Prompt) and running "cmake-gui"
- Next to "Where is the source code:", click "Browse Source..." and navigate to where you cloned the repository with Git.
- Next to "Where to build the binaries:", select "Browse Build..." and select a place to build the ITK library. I like to use c:\build\ITK. This directory should NOT be inside the directory where you cloned the repository.
- Click "Configure", and then specify "Visual Studio 10" as the generator for this project.
- Choose your build options. I like to uncheck BUILD_EXAMPLES and BUILD_TESTING, because not building them speeds up the build process significantly.
- Click "Generate".
- Open Visual Studio 2010
- Open Project
- Navigate to the Build directory you specified through CMake
- Open the ALL_BUILD project
- From the Build menu, choose "Build Solution" (or "Build ALL_BUILD")