xmlsec1/docs/api/xmlsec-notes-compiling-wind...

73 lines
3.3 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Compiling and linking on Windows.: XML Security Library Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="XML Security Library Reference Manual">
<link rel="up" href="xmlsec-notes-compiling.html" title="Building the application with XML Security Library.">
<link rel="prev" href="xmlsec-notes-compiling-unix.html" title="Compiling and linking on Unix.">
<link rel="next" href="xmlsec-notes-compiling-others.html" title="Compiling and linking on other systems.">
<meta name="generator" content="GTK-Doc V1.27 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts"></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="xmlsec-notes-compiling.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="xmlsec-notes-compiling-unix.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="xmlsec-notes-compiling-others.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="sect1">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="xmlsec-notes-compiling-windows"></a>Compiling and linking on Windows.</h2></div></div></div>
<p>On Windows there is no such simple and elegant solution.
Please check <code class="filename">README</code> file in <code class="filename">win32</code>
folder of the library package for latest instructions.
However, there are few general things, that you need to remember:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><p>
<span class="emphasis"><em>All libraries linked to your application must be compiled
with the same Microsoft Runtime Libraries.</em></span>
</p></li>
<li class="listitem">
<p>
<span class="emphasis"><em>Static linking with XML Security Library requires
additional global defines:</em></span>
</p>
<div class="informalexample"><pre class="programlisting">
#define LIBXML_STATIC
#define LIBXSLT_STATIC
#define XMLSEC_STATIC
</pre></div>
<p>
</p>
</li>
<li class="listitem"><p>
If you do not want to dynamicaly load xmlsec-crypto library
and prefer to select crypto engine at linking then you should
link your application with xmlsec and at least one of
xmlsec-crypto libraries.
</p></li>
<li class="listitem">
<p>
In order to enable dynamic loading for xmlsec-crypto library
you should add additional global define:
</p>
<div class="informalexample"><pre class="programlisting">
#define XMLSEC_CRYPTO_DYNAMIC_LOADING
</pre></div>
<p>
</p>
</li>
</ul></div>
<p>
</p>
</div>
<div class="footer">
<hr>Generated by GTK-Doc V1.27</div>
</body>
</html>