Difference between revisions of "User:Inorton/Slicer3SuperBuildWindows7"

From NAMIC Wiki
Jump to: navigation, search
m
Line 1: Line 1:
 
*install Microsoft Visual C++ Express 2010 from here: http://www.microsoft.com/express/Downloads/#2010-Visual-CPP
 
*install Microsoft Visual C++ Express 2010 from here: http://www.microsoft.com/express/Downloads/#2010-Visual-CPP
 +
** VC2008 might be better: http://www.microsoft.com/express/Downloads/#2008-Visual-CPP
 
*install CMake from here: http://www.cmake.org/cmake/resources/software.html
 
*install CMake from here: http://www.cmake.org/cmake/resources/software.html
 
*install msysGit from here: http://code.google.com/p/msysgit/
 
*install msysGit from here: http://code.google.com/p/msysgit/

Revision as of 23:11, 15 October 2010

To start, checkout the Slicer3 source using svn (SlikSVN is added to system path by default).

  • run cmd (cmd.exe, the windows command line. In Win7 just type "cmd" at the Search bar; in WinXP go to "Run Programs" and then type "cmd")
  • cd c:\cmn\dev
  • svn co http://svn.slicer.org/Slicer3/trunk Slicer3

Now run CMake.

For "Where is the source code" enter the source\SuperBuild directory, ie: C:/cmn/dev/Slicer3/SuperBuild

For "Where to build the binaries" enter something OUTSIDE the source tree, ie: C:\cmn\dev\SlicerBUILD

  • Run "Configure". Provided the steps above are set correctly, it will detect the CMakeLists and populate options.
  • Select Generator "Visual Studio 10"

It should automagically detect git, cvs, and svn. If not, turned Advanced options on and manually select the svn and cvs executables from SlikSVN and CVSNT directories respectively (C:\Program Files (x86))

  • Click Configure again
  • If no errors, click Generate.

At this point if there are no errors, all of the configuration steps should be complete. To build:

  • Go to the build directory entered above (C:\cmn\dev\SlicerBUILD)
  • Open Slicer3.sln This should open in visual studio or Visual C++ express.
  • right click on the project "ALL_BUILD" and select "Build"

NB: DO NOT try to open the ALL_BUILD solution or to build the "Slicer3: 'Solution'" parent project. The dependencies will NOT be handled correctly and the build will fail.