/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: 2010-04-17 07:43:38 UTC
  • Revision ID: csa@dside.dyndns.org-20100417074338-l45lxndn5tv72bpx
Patches for windows port

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
TARGET_LINK_LIBRARIES(dict_hw ${DICT_HW_LIBRARIES})
45
45
 
46
46
#EXCLUDE_FROM_ALL 
47
 
ADD_EXECUTABLE(dict_hw_test 
48
 
    dict_hw_test.cpp
49
 
    dict_hw.h
50
 
)
 
47
if (WIN32)
 
48
    ADD_EXECUTABLE(dict_hw_test 
 
49
        dict_hw_test.cpp
 
50
        dict_hw.h
 
51
        win/getopt_long.c
 
52
        win/getopt.h
 
53
    )
 
54
else ()
 
55
    ADD_EXECUTABLE(dict_hw_test 
 
56
        dict_hw_test.cpp
 
57
        dict_hw.h
 
58
    )
 
59
endif ()
 
60
 
51
61
TARGET_LINK_LIBRARIES(dict_hw_test dict_hw)
52
62
 
53
63