diff options
Diffstat (limited to 'gr-fft/python/fft/bindings/CMakeLists.txt')
-rw-r--r-- | gr-fft/python/fft/bindings/CMakeLists.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gr-fft/python/fft/bindings/CMakeLists.txt b/gr-fft/python/fft/bindings/CMakeLists.txt new file mode 100644 index 0000000000..4ca22cf43e --- /dev/null +++ b/gr-fft/python/fft/bindings/CMakeLists.txt @@ -0,0 +1,23 @@ +include(GrPybind) + +######################################################################## +# Python Bindings +######################################################################## + +list(APPEND fft_python_files + #ctrlport_probe_psd_python.cc + fft_python.cc + fft_shift_python.cc + fft_vcc_python.cc + fft_vfc_python.cc + goertzel_python.cc + goertzel_fc_python.cc + window_python.cc + python_bindings.cc) + +GR_PYBIND_MAKE_CHECK_HASH(fft + ../../.. + gr::fft + "${fft_python_files}") + +install(TARGETS fft_python DESTINATION ${GR_PYTHON_DIR}/gnuradio/fft COMPONENT pythonapi) |