1
0
mirror of synced 2024-12-22 04:30:01 +01:00
2024-11-07 14:42:03 +00:00
..
2018-03-29 12:27:23 +02:00
2024-11-07 14:42:03 +00:00
2018-03-29 13:26:47 +02:00
2018-03-29 13:26:47 +02:00
2018-03-29 13:26:47 +02:00
2024-08-15 07:04:35 +00:00

Dictionary Example

This is an example of building a module that includes a dictionary in CMake. Instead of using the ROOT suggested flags, we will manually add threading via find_package, which is the only important flag in the list on most systems.

examples/root-dict/CMakeLists.txt

:start-after: "[main]"
:end-before: "[main]"
:language: cmake

Supporting files

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

examples/root-dict/DictExample.cxx

:language: cpp

examples/root-dict/DictExample.h

:language: cpp

We need a LinkDef.h, as well.

examples/root-dict/DictLinkDef.h

:language: 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

:language: cpp