tizen 2.4 release
[external/curl.git] / projects / README
1 Building via IDE Project Files
2 ==============================
3
4    This document describes how to compile, build and install curl and libcurl
5    from sources using an IDE based development tool such as Visual Studio.
6
7    Project files are currently available for Visual C++ v6.0 to v12.0. The
8    following directory structure has been used to cater for this:
9
10    somedirectory\
11     |_curl
12       |_projects
13         |_<platform>
14           |_<ide>
15             |_lib
16             |_src
17
18    This structure allows for side-by-side compilation of curl on the same
19    machine using different versions of a given compiler (for example VC8, VC9
20    and VC10) and allows for your own application or product to be compiled
21    against those variants of libcurl for example.
22
23    Note: Typically this side-by-side compilation is generally only required
24    when a library is being compiled against dynamic runtime libraries.
25
26 Dependencies
27 ============
28
29    The projects files also support build configurations that require third
30    party dependencies such as OpenSSL and SSH2. If you wish to support these,
31    you will also need to download and compile those libraries as well.
32
33    To support compilation of these libraries using different versions of
34    compilers, the following directory structure has been used for both the
35    output of curl and libcurl as well as these dependencies.
36
37    somedirectory\
38     |_curl
39     | |_ build
40     |    |_<architecture>
41     |      |_<ide>
42     |        |_<configuration>
43     |          |_lib
44     |          |_src
45     |
46     |_openssl
47     | |_ build
48     |    |_<architecture>
49     |      |_VC <version>
50     |        |_<configuration>
51     |
52     |_libssh2
53       |_ build
54          |_<architecture>
55            |_VC <version>
56              |_<configuration>
57
58    As OpenSSL doesn't support side-by-side compilation when using different
59    versions of Visual Studio a build helper batch file has been provided to
60    assist with this. Please run "build-openssl -help" for usage details.
61
62 Building with Visual C++
63 ========================
64
65    To build with VC++, you will of course have to first install VC++ which is
66    part of Visual Studio.
67
68    If you are building with VC6 then you will also need the February 2003
69    Edition of the Windows Platform SDK which can be downloaded from:
70
71     http://www.microsoft.com/en-us/download/details.aspx?id=12261
72
73    If you require support for Internationalized Domain Names via Windows IDN
74    then you will need either:
75
76     * Microsoft Internationalized Domain Name (IDN) Mitigation APIs:
77       http://www.microsoft.com/en-us/download/details.aspx?id=734
78
79     * Microsoft Windows SDK Update for Windows Vista:
80       http://www.microsoft.com/en-us/download/details.aspx?id=23719
81
82     * Microsoft Visual Studio 2010 or above
83
84    Once you have VC++ installed you should launch the application and open one
85    of the solution or workspace files.
86
87    Whilst files are provided for both libcurl and the curl command line tool as
88    well as a configuration that includes both, it is recommend that you use the
89    all-in-one configuration.
90
91 Notes
92 =====
93
94    The following keywords have been used in the directory hierarchy:
95    
96    <platform>      - The platform (For example: Windows)
97    <ide>           - The IDE (For example: VC6, VC10, BCC5)
98    <architecture>  - The platform architecture (For example: Win32, Win64)
99    <configuration> - The target configuration (For example: DLL Debug,
100                      LIB Release - LIB OpenSSL)
101
102    If you are using the source code from the git repository, rather than a
103    release archive or nightly build, you will need to generate the project
104    files. Please run "generate -help" for usage details. 
105
106    Should you wish to help out with some of the items on the TODO list, or
107    find bugs in the project files that need correcting, and would like to
108    submit updated files back then please note that, whilst the solution files
109    can be edited directly, the templates for the project files (which are 
110    stored in the git repositoty) will need to be modified rather than the
111    generated project files that Visual Studio uses.
112
113 TODO
114 ====
115
116    These project files are a recent addition to the curl source code and as such
117    are not 100% complete. This is a list of things that are still todo:
118
119    * Support zlib
120    * Use of static runtime libraries
121    * Generate *.vcxproj.filters files for VC10, VC11 and VC12
122    * Add the Test Suite components
123    * Support for other development IDEs
124
125    Any additional help would be appreciated ;-)