diff options
author | Josh Morman <mormjb@gmail.com> | 2020-06-02 07:51:26 -0400 |
---|---|---|
committer | Josh Morman <mormjb@gmail.com> | 2020-06-04 11:00:08 -0400 |
commit | f7d2af3fac22e0c249cb4ef68f6555a259eea635 (patch) | |
tree | 8c19901f73c171e6222f04bf178f3118258affa9 | |
parent | a59b23d28f5389859d87d9d9b18cee17d468061b (diff) |
bindtool: copy template files to build dir for qa
-rw-r--r-- | gr-utils/bindtool/templates/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gr-utils/bindtool/templates/CMakeLists.txt b/gr-utils/bindtool/templates/CMakeLists.txt index 29d220984a..f28e2412bc 100644 --- a/gr-utils/bindtool/templates/CMakeLists.txt +++ b/gr-utils/bindtool/templates/CMakeLists.txt @@ -1,3 +1,14 @@ +# Templates need to be placed in build directory for qa tests to work +file(COPY + generic_python_cc.mako + CMakeLists.txt.mako + license.mako + python_bindings_cc.mako + pydoc_h.mako + # types.py + DESTINATION ${CMAKE_CURRENT_BINARY_DIR} +) + install(FILES generic_python_cc.mako CMakeLists.txt.mako |