summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-02-03 23:38:25 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-02-03 23:38:25 +0000
commitbbe2f3954ee6b168c044d21c7f0d6df8b13f981f (patch)
tree02b172a7f873a6376b3dbd5c03860062e727a039 /docs
parent43b9b72aeab2ae0b02a58495810224ddd6e8c772 (diff)
downloadATCD-bbe2f3954ee6b168c044d21c7f0d6df8b13f981f.tar.gz
ChangeLogTag:Thu Feb 3 11:40:27 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'docs')
-rw-r--r--docs/ACE-subsets.html25
1 files changed, 24 insertions, 1 deletions
diff --git a/docs/ACE-subsets.html b/docs/ACE-subsets.html
index eb3b350b730..e0e22ada739 100644
--- a/docs/ACE-subsets.html
+++ b/docs/ACE-subsets.html
@@ -769,6 +769,9 @@ currently supports. To reduce build time and library size, you can
exclude unused components. To do that, define an
<code>ACE_COMPONENTS</code> variable using one of these approaches:<p>
+<ul>
+<li>
+<h4>UNIX</h4>
<ol>
<li>In your <code>$(ACE_ROOT)/include/makeinclude/platform_macros.GNU</code>
file, <em>e.g.</em>, add:
@@ -779,7 +782,27 @@ exclude unused components. To do that, define an
<li>Set (and export) the <code>ACE_COMPONENTS</code> environment variable
to contain the components that you want to build.<p>
-</ol><p>
+</ol>
+</li>
+
+<li>
+<h4>Win32</h4>
+Follow these steps to select subsets to build using Microsoft Visual
+C++:
+<p>
+<ol>
+<li>Go the <em>Project->Settings</em> menu.</li>
+<li>Select the <em>C/C++</em> tab.
+<li>In the <em>Preprocessor Definitions</em> box select subsets to
+build by setting the <code>ACE_COMPONENTS</code> macro appropriately.
+For example, to build the <code>OS</code> and <code>Sockets</code>
+ACE subsets, add the following to the <em>Preprocessor
+Definitions</em> box:
+<BLOCKQUOTE><PRE>ACE_COMPONENTS="OS Sockets"</PRE></BLOCKQUOTE>
+</ol>
+</li>
+
+</ul>
Please see <code><a href="../ace/Makefile">../ace/Makefile</a></code>
for the default contents of <code>ACE_COMPONENTS</code>.<p>