summaryrefslogtreecommitdiffstats
path: root/deps/oclfft
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-10-20 14:07:16 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-10-20 14:07:16 +0200
commitef0617eaa2793f752a59e009c2831384b94d38fb (patch)
tree731fcb5984308b6c87f9d37b524122ef5a2b2399 /deps/oclfft
parentb0ff7cbad40d1c42b4ee928fcc7e3d82d5f35c77 (diff)
downloadufo-filters-ef0617eaa2793f752a59e009c2831384b94d38fb.tar.gz
ufo-filters-ef0617eaa2793f752a59e009c2831384b94d38fb.tar.bz2
ufo-filters-ef0617eaa2793f752a59e009c2831384b94d38fb.tar.xz
ufo-filters-ef0617eaa2793f752a59e009c2831384b94d38fb.zip
oclfft: link against UFO
Diffstat (limited to 'deps/oclfft')
-rw-r--r--deps/oclfft/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/oclfft/CMakeLists.txt b/deps/oclfft/CMakeLists.txt
index abda5b8..3e34a5a 100644
--- a/deps/oclfft/CMakeLists.txt
+++ b/deps/oclfft/CMakeLists.txt
@@ -1,13 +1,13 @@
project(oclfft CXX)
include_directories(${OPENCL_INCLUDE_DIRS}
- ${UFO_INCLUDE_DIRS})
+ ${UFO_INCLUDE_DIRS})
add_library(oclfft SHARED
fft_execute.cpp
fft_setup.cpp
fft_kernelstring.cpp)
-target_link_libraries(oclfft ${OPENCL_LIBRARIES})
+target_link_libraries(oclfft ${UFO_LIBRARIES} ${OPENCL_LIBRARIES})
install(TARGETS oclfft
LIBRARY DESTINATION ${UFO_FILTERS_LIBDIR})