Building on Windows Using Visual Studio Express 2012 » History » Version 3
Nehal J Wani, 14 Aug 2014 11:12
1 | 2 | Nehal J Wani | h1. Building on Windows Using Microsoft Visual Studio Express 2012 |
---|---|---|---|
2 | 1 | Nehal J Wani | |
3 | 2 | Nehal J Wani | # Download @win32svn@ from http://sourceforge.net/projects/win32svn/files/latest/download and install it in @C:\Program Files (x86)\Subversion@ |
4 | # Open command prompt and type: |
||
5 | <pre> |
||
6 | mkdir C:\gnu #Can be some other location too. |
||
7 | cd C:\gnu |
||
8 | svn checkout svn://dev.exiv2.org/svn/trunk #Download latest exiv2 source code |
||
9 | </pre> |
||
10 | # Download @expat-2.1.0@ from expat-http://sourceforge.net/projects/expat/files/expat/2.1.0/expat-2.1.0.tar.gz/download and extract it to @C:\gnu@ |
||
11 | # Download @zlib-1.2.7@ from http://sourceforge.net/projects/libpng/files/zlib/1.2.7/zlib-1.2.7.tar.gz/download and extract it to @C:\gnu@ |
||
12 | 3 | Nehal J Wani | !Windows_BuildDir.png! |
13 | 2 | Nehal J Wani | # Navigate to @C:\gnu\trunk\msvc2012@ and open the file @exiv2.sln@ in @Microsoft Visual Studio Express 2012@ |
14 | # Press @OK@ for all security warnings. #Believe me, exiv2's code is clean, we don't pose security threats :) |
||
15 | # Go to @Build->Configuration Manager@. Tick build for all projects. You will have 8 combinations @[{Debug|DebugDLL|Release|ReleaseDLL}|{x64|Win32}]@ to choose from. Click close. |
||
16 | # Go to @Build->Build Solution@. After the build is complete, you'll see in the output window: |
||
17 | <pre>========== Build: 32 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========</pre> |
||
18 | # |