Click here to Skip to main content
Full site     10M members (42.5K online)    

Tool for Converting VC++2005 Project to Linux Makefile

Introduction

This tool automatically converts Visual C++ 8.0 or 9.0 projects to Linux makefile. Important note, there is no loss during the conversion: source code and .sln/.vcproj files are left unchanged. The tool has been implemented in C# VS 2005.

Why?

Both these reasons force you to create a makefile manually and each small change in your project requires hard physical labor in makefile maintenance.

This tool will do it for you automatically and will provide you with the ability to keep .sln/.vcproj and .mak files synchronized.

Using the Tool

The tool is a command line (console application).

There are three cases for tool use I covered in this article:

  1.  You have a .sln - solution that has one or more .vcproj (projects), among which one of them has the same name as the solution itself and is the main/leading project. This leading project should be a target project that will be compiled into .exe or .dll. Other projects in this solution are dependencies for the leading project. Makefiles will not be generated for those projects that do not have dependencies. Sub-projects can have additional dependencies on external precompiled libraries (libs), stdlib.
  2. You should not sign those dependencies explicitly for a tool; it will be parsed from .vcproj files.

    In this case, the usage:

    sln2mak [Solution_FullPath_File_Name].sln

    Example:

    sln2mak c:/myprojects/test/unit_test.sln
  3. The same case as 1, except that the leading project has a name that is different from the solution name. Flag –l for leading followed by leading project name and then solution fullpath.  
  4. In this case, the usage:

    sln2mak -l [LEADING_Project_Name] [Solution_FullPath_File_Name].sln

    Example:

    sln2mak -l unit_test c:/myprojects/test/test.sln
  5. You'd like to create a makefile from a list of projects without solution "wrapper". For example, you'd like to create a makefile with different structures, not like the one you have for WindowsOS.

    You have a main/leading project and other projects are dependencies of that.

    In addition, you have some precompiled libraries (libs) that you'd like to see them as dependencies for the leading project.  However, they are not listed in the main .vcproj. How can it be, you'll ask? For example, in some solution you have your leading project with all its sub-projects. One of those projects, that the leading project is dependent on, has a dependencies to some precompiled libraries and those are listed within its .vcproj file. So if you use the tool for the whole solution, those dependencies for linker will be parsed from this project and will be listed in its .mak file and then linked by linker to the main/leading project well. But now you'd like to compile only specific list of project that don’t involve  the dependent project, so you  are required to list those libs dependencies manually. Flag –d for dependencies followed by the list of those libs dependencies. 

    sln2mak [LEADING_Project_FullPath_Name].vcproj [Project_FullPath_Name_2].vcproj ... 
             [Project_FullPath_Name_n].vcproj -d [lib_Name_1] ... [lib_Name_n]

    Example:

    sln2mak c:/myprojects/tets/unit_test.vcproj c:/myprojects/tets/test_lib.vcproj 
        -d mystaticlib1 mystaticlib2 mystaticlib3 

    For usage, call sln2mak with no arguments.  

    After application runs, you'll find .mak file in path where .vcproj is located with the same name as the project.

    .mak files have all additional libraries path, sources, flags for compiler, linker, preprocessor and target path. 

In .sln path, you'll find Makefile that will handle all target rules (clean, make) and dependencies.

sln2mak/Makefile.JPG

Points of Interest

Parser Class

This class has a static constructor that aims to be known for all classes without instantiation.

It holds regular expression that serves all other classes for parsing .sln and .vcproj files.

Regex m_ProjectGuid      = new Regex(@"ProjectGUID=""\{(.*)\}"""        ) ;
Regex m_SlnExtention     = new Regex(@"(.*)(.[Ss][Ll][Nn])$"            ) ;
Regex m_VcprojExtention  = new Regex(@"(.*)(.[Vv][Cc][Pp][Rr][Oo][Jj])$") ;
Regex m_ProjectRegex     = new Regex(@"Project\(""\{(.*)\}""\) = ""(.*)"", ""(.*)"",
   ""\{(.*)\}""") ;

VcSlnInfo Class

This class parses solution file and creates Makefile with target rules.

This class uses stream reader for reading .sln file line by line. During reading .sln file, it recognizes an active project (its name is similar to the solution name) and creates four dictionaries that hold information about all main and dependent projects:

Dictionary<string, string>  m_ProjGuidName = new Dictionary<string, string>() ;

Then method ParseVcproj is called - public VcProjInfo class's function, but first for each .vcproj  instance of VcProjInfo object created with projectName, projectFullPath and projectMakFileName.

VcProjInfo Class

In this class, VCProjectEngine object is used for retrieving all the necessary information about .vcproj, like target type and name, compiler flags, additional libraries, linker flags, sources and filters, preprocessor definitions, configurations, etc.

using Microsoft.VisualStudio.VCProjectEngine;
VCProjectEngine vcprojEngine = new VCProjectEngineObject();
//Init VCProject vcProj object
VCProject m_VcProj = (VCProject)vcprojEngine.LoadProject(vcProjFile);

//Init vcproj configurations list 
IVCCollection m_ConfigCollection = (IVCCollection)m_VcProj.Configurations;

All these helped me to create .mak file with CFLAGS, LDFLAGS, OBJS, etc.

Important Notes

History  

Prior to writing the application, I tried to find a similar tool on the internet, but was only successful in finding other people's questions on online forums regarding the issue.
Then I attempted to understand XML-schema of a VC++8 solution and project, but the schema wasn't clear enough.

Suddenly I found a Microsoft.VisualStudio.VCProjectEngine reference with VCProjectEngine object within .NET components which helped me to understand the structure of a VC++ 2005 project. I used this object in my application for .vcproj parsing instead of using System.Xml for XML tree reading, and this without proper XML schema documentation.

sln2mak/reference.JPG

Disclaimer 

The information provided on this page comes without any warranty whatsoever.  

This tool has been extensively tested before being published, but always there is the possibility to find some weakness. I strongly recommend that you back up your project before using this tool. Moreover, though I am willing to know if there is anything I can do in order to improve it, let me clearly say that it's not my fault if your project is corrupted by this tool.

Update History  

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search 
Per page   
QuestionProblems when using sln2mak in VS2010 [modified]
Shuai Zhang
13 May '13 - 2:47 
QuestionUse sln2mak for fortran projects
Martin Estrada
22 Mar '13 - 6:45 
AnswerRe: Use sln2mak for fortran projects
Maria Adamsky
23 Mar '13 - 0:38 
QuestionUnhandled COMException
Member 9381395
15 Mar '13 - 7:39 
AnswerRe: Unhandled COMException
Maria Adamsky
23 Mar '13 - 0:47 
AnswerRe: Unhandled COMException
HowitZer26
19 Apr '13 - 8:08 
GeneralRe: Unhandled COMException
Maria Adamsky
20 Apr '13 - 1:27 
QuestionUnhandle Exception
MrKyaw
1 Nov '12 - 6:55 
AnswerRe: Unhandle Exception
Maria Adamsky
1 Nov '12 - 8:23 
AnswerRe: Unhandle Exception
Maria Adamsky
1 Nov '12 - 8:30 
GeneralRe: Unhandle Exception
PeterFig
21 Nov '12 - 10:00 
GeneralRe: Unhandle Exception
Namrata Shet
5 Dec '12 - 1:37 
GeneralRe: Unhandle Exception
c0mas
25 Mar '13 - 7:09 
GeneralRe: Unhandle Exception
Maria Adamsky
25 Mar '13 - 8:19 
GeneralRe: Unhandle Exception
c0mas
26 Mar '13 - 0:15 
AnswerRe: Unhandle Exception
c0mas
25 Mar '13 - 7:06 
Questionnot working crap
Vadim Zyarko
8 Oct '12 - 8:43 
AnswerRe: not working crap
Maria Adamsky
10 Oct '12 - 2:12 
GeneralRe: not working crap
Henry Fang
28 Oct '12 - 17:24 
QuestionVisual Studio 10 and 11
vit_lynx
13 Jul '12 - 1:13 
GeneralRe: Visual Studio 10 and 11
Maria Adamsky
13 Jul '12 - 4:22 
AnswerRe: Visual Studio 10 and 11
PeterFig
21 Nov '12 - 8:48 
GeneralRe: Visual Studio 10 and 11
Maria Adamsky
21 Nov '12 - 10:10 
QuestionRe: Visual Studio 10 and 11
HowitZer26
5 Dec '12 - 5:23 
Questiondoes not work in XP ??
Member 9156827
22 Jun '12 - 4:49 
AnswerRe: does not work in XP ??
Maria Adamsky
12 Jul '12 - 21:34 
QuestionWin 7 x32 attempt?
KenLThomas
7 Jun '12 - 10:36 
GeneralRe: Win 7 x32 attempt?
Member 7955450
11 Jul '12 - 14:08 
GeneralRe: Win 7 x32 attempt?
Maria Adamsky
12 Jul '12 - 21:33 
QuestionLittle improvement for non-project directories in sln
Member 8954636
10 May '12 - 1:12 
AnswerRe: Little improvement for non-project directories in sln
Maria Adamsky
11 May '12 - 1:21 
QuestionSome bugs?
Gzork
22 Mar '12 - 11:01 
AnswerRe: Some bugs?
Maria Adamsky
12 Jul '12 - 21:38 
GeneralMy vote of 5
Laxmikant_Yadav
18 Nov '11 - 0:58 
Questionextracting project makefile path
Amy Phillips 7
4 Nov '11 - 6:17 
AnswerRe: extracting project makefile path
Maria Adamsky
4 Nov '11 - 11:58 
QuestionNeed the correct comand
Member 8126462
3 Aug '11 - 19:54 
AnswerRe: Need the correct comand
Maria Adamsky
3 Aug '11 - 20:44 
GeneralRe: Need the correct comand
Member 8126462
3 Aug '11 - 20:56 
GeneralRe: Need the correct comand
Maria Adamsky
3 Aug '11 - 21:55 
GeneralRe: Need the correct comand
Member 8126462
4 Aug '11 - 0:22 
GeneralRe: Need the correct comand
Maria Adamsky
4 Aug '11 - 0:42 
GeneralRe: Need the correct comand
Member 8126462
4 Aug '11 - 0:52 
GeneralRe: Need the correct comand
Maria Adamsky
4 Aug '11 - 1:05 
GeneralRe: Need the correct comand
Member 8126462
4 Aug '11 - 1:12 
GeneralRe: Need the correct comand
Maria Adamsky
4 Aug '11 - 1:26 
GeneralRe: Need the correct comand
Member 8126462
4 Aug '11 - 2:43 
GeneralRe: Need the correct comand
Maria Adamsky
4 Aug '11 - 2:57 
QuestionIssue when using with VS2005
Member 2216423
4 Jul '11 - 3:58 
AnswerRe: Issue when using with VS2005
Maria Adamsky
4 Jul '11 - 6:54 

Last Updated 13 Jul 2012 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2013