summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-11-23 17:46:26 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-11-23 17:46:26 +0000
commit3694e8f60b4ea8ceb4307f4d396674d47419f3f0 (patch)
tree3fb0ad8a07f65ec4dfe52bfc879b9dbd7e1db050
parent270a5991a683c623e084f994675fe4711a5c4592 (diff)
downloadATCD-3694e8f60b4ea8ceb4307f4d396674d47419f3f0.tar.gz
ChangeLogTag:Tue Nov 23 11:43:00 1999 Nanbor Wang <nanbor@cs.wustl.edu>
-rw-r--r--TAO/ChangeLog-99c14
-rw-r--r--TAO/TAO-INSTALL.html24
2 files changed, 22 insertions, 16 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 3064db2546b..d181d0cb3cb 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,9 +1,15 @@
+Tue Nov 23 11:43:00 1999 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * TAO-INSTALL.html: Revised guidelines on "adding IDL to your
+ project settings". Thanks to Ben Bourner <ben@orion.no> for the
+ suggesting this.
+
Tue Nov 23 11:04:20 1999 Yamuna Krishnamurthy <yamuna@cs.wustl.edu>
- * orbsvcs/tests/AVStreams/benchmark/client.cpp:
- * orbsvcs/tests/AVStreams/benchmark/child.cpp:
- Fixed the tests to run with the pluggable protocols framework
-
+ * orbsvcs/tests/AVStreams/benchmark/client.cpp:
+ * orbsvcs/tests/AVStreams/benchmark/child.cpp:
+ Fixed the tests to run with the pluggable protocols framework
+
Tue Nov 23 00:59:23 1999 Nanbor Wang <nanbor@cs.wustl.edu>
diff --git a/TAO/TAO-INSTALL.html b/TAO/TAO-INSTALL.html
index b9eecbd7c62..6a266d7095b 100644
--- a/TAO/TAO-INSTALL.html
+++ b/TAO/TAO-INSTALL.html
@@ -301,7 +301,7 @@ adding an IDL file named foobar.idl into a VC project.
Project</b>" call foobar_idl for compiling the shared IDL file.
Add the IDL file &lt;foobar.idl&gt to foobar_idl project and
other non-IDL generated files into both client and server
- projects.</LI>
+ projects.</LI>
<LI>Added foobarC.h, foobarC.i, foobarC.cpp, foobarS.h, foobarS.i, and
foobarS.cpp into server project and foobarC.h, foobarC.i,
@@ -311,26 +311,26 @@ adding an IDL file named foobar.idl into a VC project.
Setting... or just press Alt-F7.) Select the IDL file in the
projects. Choose to set the setting for "All Configuration."
Make sure the "Always use custom build step" is checked and
- "Exclude from build" is unchecked.</LI>
+ "Exclude from build" is unchecked.</LI>
<LI>Click on the "Custom Build" tab. Add this entry as the build command
for IDL files:<BR><BR>
- <PRE>tao_idl $(InputName).idl</PRE>
+ <PRE>tao_idl $(InputPath) -o $(InputDir) -I $(InputDir)</PRE>
Notice that your absolute path to TAO_IDL may vary.</LI>
<LI>Now add the following entries as "Output file(s)."<BR><BR>
<PRE>
- $(InputName)S.h
- $(InputName)C.h
- $(InputName)C.i
- $(InputName)C.cpp
- $(InputName)S.i
- $(InputName)S.cpp
- $(InputName)S_T.h
- $(InputName)S_T.i
- $(InputName)S_T.cpp
+ $(InputDir)\$(InputName)S.h
+ $(InputDir)\$(InputName)C.h
+ $(InputDir)\$(InputName)C.i
+ $(InputDir)\$(InputName)C.cpp
+ $(InputDir)\$(InputName)S.i
+ $(InputDir)\$(InputName)S.cpp
+ $(InputDir)\$(InputName)S_T.h
+ $(InputDir)\$(InputName)S_T.i
+ $(InputDir)\$(InputName)S_T.cpp
</PRE>
Add only one entry in each line.</LI>