aboutsummaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-08-21 12:17:10 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-08-21 12:17:10 +0200
commita56512610b3928cc78ac893f967cad724b2800c1 (patch)
treeaf90ec8cb8c6709c3694a6d52fb7552cbbec8fb7 /documentation
parent979fa3ee4e693dc06fa66c1ec4afaeffbf679d8e (diff)
Add a missing file to sample command line
Diffstat (limited to 'documentation')
-rw-r--r--documentation/cxx/hybrid/guide/index.xhtml7
1 files changed, 5 insertions, 2 deletions
diff --git a/documentation/cxx/hybrid/guide/index.xhtml b/documentation/cxx/hybrid/guide/index.xhtml
index 465f3d8..70d5d34 100644
--- a/documentation/cxx/hybrid/guide/index.xhtml
+++ b/documentation/cxx/hybrid/guide/index.xhtml
@@ -780,9 +780,12 @@ main (int argc, char* argv[])
</p>
<pre class="terminal">
-$ c++ -I.../libxsde -c driver.cxx hello-pskel.cxx hello-pimpl.cxx
-$ c++ -o driver driver.o hello-pskel.o hello-pimpl.o \
+$ c++ -I.../libxsde -c driver.cxx hello.cxx hello-pskel.cxx \
+ hello-pimpl.cxx
+
+$ c++ -o driver driver.o hello.o hello-pskel.o hello-pimpl.o \
.../libxsde/xsde/libxsde.a
+
$ ./driver hello.xml
Hello, sun!
Hello, moon!