/normxcorr/trunk

To get this branch, use:
bzr branch http://suren.me/webbzr/normxcorr/trunk

« back to all changes in this revision

Viewing changes to dict_hw/src/CMakeLists.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2009-12-13 02:20:05 UTC
  • Revision ID: csa@dside.dyndns.org-20091213022005-m932to8hhihwuw5r
Support for TIFF images in C code and stand-alone console application

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    local_sum_kernel.cu.h
27
27
    normxcorr_hw.h
28
28
    normxcorr_hw_msg.h
 
29
    dict_image.h
29
30
    helpers.h
30
31
)
31
32
 
32
33
SET(hst_cuda_SRCS
33
34
    dict_hw.cu
34
35
    validate.cpp
 
36
    dict_image.cpp
 
37
    normxcorr_hw_msg.cpp
35
38
    ${HEADERS}
36
39
)
37
40
 
40
43
CUDA_ADD_CUFFT_TO_TARGET(dict_hw)
41
44
TARGET_LINK_LIBRARIES(dict_hw ${DICT_HW_LIBRARIES})
42
45
 
43
 
 
44
 
#ADD_EXECUTABLE(hst_cuda_test EXCLUDE_FROM_ALL 
45
 
#    hst_cuda_test.cpp
46
 
#    ${HEADERS}
47
 
#)
48
 
#TARGET_LINK_LIBRARIES(hst_cuda_test hst_cuda)
 
46
#EXCLUDE_FROM_ALL 
 
47
ADD_EXECUTABLE(dict_hw_test 
 
48
    dict_hw_test.cpp
 
49
    dict_hw.h
 
50
)
 
51
TARGET_LINK_LIBRARIES(dict_hw_test dict_hw)
49
52
 
50
53
    
51
54