diff options
author | Brent Stapleton <brent.stapleton@ettus.com> | 2018-01-25 14:31:36 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-02-01 06:37:30 +0100 |
commit | a8f212beb0633996828337a7a68475987d616db6 (patch) | |
tree | a1a4779dc034b5862742731d6ceb0b22c76c3901 /host/CMakeLists.txt | |
parent | 4ebfea45f32cc845d7887e552e8c6084d8ef3067 (diff) | |
download | uhd-a8f212beb0633996828337a7a68475987d616db6.tar.gz uhd-a8f212beb0633996828337a7a68475987d616db6.tar.bz2 uhd-a8f212beb0633996828337a7a68475987d616db6.zip |
cmake: Re-add requirement for Python requests
Uncommenting a CMake check for the Python module requests.
Diffstat (limited to 'host/CMakeLists.txt')
-rw-r--r-- | host/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index e153e0b9d..543ec7c64 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -329,11 +329,11 @@ PYTHON_CHECK_MODULE( HAVE_PYTHON_MODULE_MAKO ) -#PYTHON_CHECK_MODULE( - #"requests 2.0 or greater" - #"requests" "requests.__version__ >= '2.0'" - #HAVE_PYTHON_MODULE_REQUESTS -#) +PYTHON_CHECK_MODULE( + "requests 2.0 or greater" + "requests" "requests.__version__ >= '2.0'" + HAVE_PYTHON_MODULE_REQUESTS +) ######################################################################## # Create Uninstall Target |