2003-05-02 Alp Toker <alp@atoker.com>
[mono.git] / mcs / tools / cilc / README
1 cilc
2 ====
3
4 cilc is a CIL-to-C binding generator. It can be used to expose any CIL library
5 to the C (and C++) world using the GObject object model and coding style. This
6 should be of particular interest to GNOME developers who wish to make use of
7 libraries developed in C#, perhaps Gtk# widgets, within their own C
8 applications. Developers who use a generated binding need no specific knowledge
9 pertaining to Mono and runtime embedding -- almost everything is done behind
10 the scenes.
11
12 Right now, cilc is in an early stage of development. See TODO for a list of
13 pending tasks.
14
15 For a demonstration, see Test.cs and demo.c to get an idea of what's going on.
16 Then run:
17
18 $ make test
19 $ cd generated
20 $ ./demo
21
22 -- 
23 Alp Toker <alp@atoker.com>