All Manuals > Developing Component Software with CORBA > 2 Quick Start Tutorial > 2.2 Complete source code for the Hello World example

NextPrevUpTopContentsIndex

2.2.2 The complete defsystem source code

The complete code for the Hello World defsystem (the defsys.lisp file) is:

(in-package "CL-USER") (require "corba-orb")
(defsystem hello-world-corba-object ()
  :members (
            ("hello-world" :type :idl-file)
            "shared"
            "hello-world-server"
            "hello-world-client"
           )
:rules ((:in-order-to :compile :all
         (:requires (:load :previous)))))

Developing Component Software with CORBA - 29 Jul 2010

NextPrevUpTopContentsIndex