diff options
author | Gerion Entrup <gerion.entrup@flump.de> | 2020-02-10 14:14:19 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-02-10 23:12:20 +0200 |
commit | 1c74bbbfb3854163c82535a094fe8ca93a154725 (patch) | |
tree | bbec43a84dbb32e34b3b05b686675196fd60b5bd | |
parent | 5118cf914df8c48b5999ce0cae80b43c4cd56632 (diff) | |
download | meson-1c74bbbfb3854163c82535a094fe8ca93a154725.zip meson-1c74bbbfb3854163c82535a094fe8ca93a154725.tar.gz meson-1c74bbbfb3854163c82535a094fe8ca93a154725.tar.bz2 |
test cases/python3/3 cython: fix dependency files
The Cython generation depends on cstorer.pxd as well, so add that as
dependency.
-rw-r--r-- | test cases/python3/3 cython/libdir/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test cases/python3/3 cython/libdir/meson.build b/test cases/python3/3 cython/libdir/meson.build index 7823a6b..4aaa041 100644 --- a/test cases/python3/3 cython/libdir/meson.build +++ b/test cases/python3/3 cython/libdir/meson.build @@ -1,6 +1,7 @@ pyx_c = custom_target('storer_pyx', output : 'storer_pyx.c', input : 'storer.pyx', + depend_files : 'cstorer.pxd', command : [cython, '@INPUT@', '-o', '@OUTPUT@'], ) |