1
0
mirror of synced 2024-05-29 00:38:11 +02:00
modern-cmake/examples/root-dict
2018-03-29 19:30:00 +02:00
..
CheckLoad.C Examples all build and test 2018-03-29 12:27:23 +02:00
CMakeLists.txt Reordering and moving things around 2018-03-29 19:30:00 +02:00
DictExample.cxx Adding nice examples 2018-03-29 13:26:47 +02:00
DictExample.h Adding nice examples 2018-03-29 13:26:47 +02:00
DictLinkDef.h Adding nice examples 2018-03-29 13:26:47 +02:00
README.md Adding nice examples 2018-03-29 13:26:47 +02:00

Dictionary Example

This is an example of building a module that includes a dictionary in CMake.

examples/root-dict/CMakeLists.txt

import:'main', lang:'cmake'

Supporting files

This is just a simple-as-possible class definition, with one method:

examples/root-dict/DictExample.cxx

import, lang:'c_cpp'

examples/root-dict/DictExample.h

import, lang:'c_cpp'

We need a LinkDef.h, as well.

examples/root-dict/DictLinkDef.h

import, lang:'c_cpp'

Testing it

This is an example of a macro that tests the correct generation from the files listed above.

examples/root-dict/CheckLoad.C

import, lang:'c_cpp'