diff options
author | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-02 17:12:17 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-03 12:11:06 -0800 |
commit | 494c7338d7d3cf057a25b02ac37cfa39397dacba (patch) | |
tree | 5186d08a35b1ecaa199d8255c9733304d73570eb /host/tests/devtest | |
parent | 847275cce0c2266941bbc2acd4ab2707a0118137 (diff) | |
download | uhd-494c7338d7d3cf057a25b02ac37cfa39397dacba.tar.gz uhd-494c7338d7d3cf057a25b02ac37cfa39397dacba.tar.bz2 uhd-494c7338d7d3cf057a25b02ac37cfa39397dacba.zip |
devtest: Fix CMake `endif` warning
When adding E320 devtests, the `endif` clause had the wrong argument,
which resulted in a CMake warning.
Diffstat (limited to 'host/tests/devtest')
-rw-r--r-- | host/tests/devtest/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/tests/devtest/CMakeLists.txt b/host/tests/devtest/CMakeLists.txt index 6a76a440c..1d105e958 100644 --- a/host/tests/devtest/CMakeLists.txt +++ b/host/tests/devtest/CMakeLists.txt @@ -48,6 +48,6 @@ if(ENABLE_N300) endif(ENABLE_N300) if(ENABLE_E320) ADD_DEVTEST("e320" "e3xx" "E32x") -endif(ENABLE_MPMD) +endif(ENABLE_E320) # Formatting message(STATUS "") |