-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate an additional cmake lists file containing the generated sour…
…ce files (#143) * Create cmake lists file with generated files * Make templates and yaml file changes retrigger cmake * Make changes to the code generator retrigger generation * Make macro abort cmake if datamodel cannot be generated
- Loading branch information
Showing
4 changed files
with
108 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,3 +55,6 @@ spack* | |
# Tooling | ||
/.clangd/ | ||
/compile_commands.json | ||
|
||
# Generated files | ||
*podio_generated_files.cmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
set(PODIO_TEMPLATES | ||
${CMAKE_CURRENT_LIST_DIR}/Collection.cc.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/Collection.h.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/CollectionData.cc.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/CollectionData.h.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/Component.h.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/ConstObject.cc.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/ConstObject.h.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/Data.h.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/Obj.cc.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/Object.cc.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/Object.h.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/Obj.h.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/selection.xml.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/SIOBlock.cc.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/SIOBlock.h.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/macros/collections.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/macros/declarations.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/macros/implementations.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/macros/iterator.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/macros/sioblocks.jinja2 | ||
${CMAKE_CURRENT_LIST_DIR}/macros/utils.jinja2 | ||
) |