cling/tools/demo
2017-03-19 22:59:33 +01:00
..
cling-demo.cpp Add an example of a CMake project using cling (Issue 23). 2017-03-19 22:59:33 +01:00
CMakeLists.txt Add an example of a CMake project using cling (Issue 23). 2017-03-19 22:59:33 +01:00
README.md Add an example of a CMake project using cling (Issue 23). 2017-03-19 22:59:33 +01:00

=== Example project using cling as library ===

This example project uses cling as an external library. It compiles code and calls it, moving values from the compiled part to the interpreted part and back.

It showcases how to use cling as a library, and shows how to set up a simple CMake configuration that uses cling.

==== How to build ====

After installing cling (say into /where/cling/is/installed), configure this project using CMake like this:

cmake -Dcling_DIR=/where/cling/is/installed/lib/cmake/cling  /path/to/cling/sources/tools/cling/tools/demo
make && ./cling-demo