Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes from Version 1 of Building

Show
Ignore:
Author:
aldon (IP: 24.41.66.30)
Timestamp:
08/22/10 20:11:55 (14 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Building

    v0 v1  
     1= Getting and Building the Source Code = 
     2 
     3Source control is by Subversion. You can check out http://svn.dsource.org/projects/mago_debugger. 
     4 
     5 
     6You build with the solution and project files that are in the source tree. They are Visual Studio 2008 based files. To build with a different version of VS, you'll have to convert them yourself; though I do have plans to convert them to 2010, or at least keep them side by side with the 2008 versions. 
     7 
     8 
     9The debugger has these dependencies: 
     10 
     11 * stdint.h and inttypes.h 
     12 * !CppTest 1.0 
     13 * Boost 1.40 
     14 * VS 2008 SDK 
     15 
     16You can open the solution or project files in VS and build that way. Or, you can build from the command line after you add the right INCLUDE and LIB paths for the dependencies. You build by running the following in a VS 2008 command prompt: 
     17 
     18{{{ 
     19vcbuild /u /platform:win32 
     20}}} 
     21 
     22If you have the static library form of !CppTest, then you might need to reference the specific configuration (as in Debug or Release) of !CppTest. This is done with a path like the following (for VS 2010, use "Configuration"): 
     23 
     24{{{ 
     25F:\Dev\Proj\CppTest\$(ConfigurationName) 
     26}}} 
     27 
     28To build the add-in launcher, go to the [source:/trunk/MagoDELauncher MagoDELauncher] folder and run msbuild. 
     29 
     30 
     31If you don't have Visual Studio installed, then download the Windows SDK and build using its C++ and C# tools.