aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Fischer <moritz.fischer@ettus.com>2017-07-27 09:28:44 -0700
committerMartin Braun <martin.braun@ettus.com>2017-07-27 15:45:14 -0700
commit61b52e5113dbe25ba0d83a135c34532de543542e (patch)
tree885f14dc47400e446ce8f87770007706c8ceadb4
parentc98f155209c59d677cb88b54ed7707b3f5daf2d5 (diff)
downloaduhd-61b52e5113dbe25ba0d83a135c34532de543542e.tar.gz
uhd-61b52e5113dbe25ba0d83a135c34532de543542e.tar.bz2
uhd-61b52e5113dbe25ba0d83a135c34532de543542e.zip
lib: rfnoc: cmake: Fix typo in CMakeLists.txt
The file was missing a .cpp suffix for the dma_fifo_block_ctrl_impl file, somehow CMake was being smart and inferring the filetype. Be explicit. Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
-rw-r--r--host/lib/rfnoc/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/rfnoc/CMakeLists.txt b/host/lib/rfnoc/CMakeLists.txt
index 130b4173e..7a41e3541 100644
--- a/host/lib/rfnoc/CMakeLists.txt
+++ b/host/lib/rfnoc/CMakeLists.txt
@@ -1,5 +1,5 @@
#
-# Copyright 2014-2015 Ettus Research LLC
+# Copyright 2014-2015,2017 Ettus Research LLC
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -47,7 +47,7 @@ LIBUHD_APPEND_SOURCES(
${CMAKE_CURRENT_SOURCE_DIR}/ddc_block_ctrl_impl.cpp
${CMAKE_CURRENT_SOURCE_DIR}/duc_block_ctrl_impl.cpp
${CMAKE_CURRENT_SOURCE_DIR}/radio_ctrl_impl.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/dma_fifo_block_ctrl_impl
+ ${CMAKE_CURRENT_SOURCE_DIR}/dma_fifo_block_ctrl_impl.cpp
)
INCLUDE_SUBDIRECTORY(nocscript)