/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-26 03:58:12 UTC
  • Revision ID: csa@dside.dyndns.org-20100426035812-st93op9yj551wi3b
Multipass mode and re-initialization fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
#EXCLUDE_FROM_ALL 
51
51
if (WIN32)
52
 
    ADD_EXECUTABLE(dict_hw_test 
53
 
        dict_hw_test.cpp
 
52
    ADD_EXECUTABLE(dict_hw_cli 
 
53
        dict_hw_cli.cpp
54
54
        dict_hw.h
55
55
        win/getopt_long.c
56
56
        win/getopt.h
57
57
    )
 
58
    SET_TARGET_PROPERTIES(dict_hw_cli PROPERTIES OUTPUT_NAME dict_hw.exe)
58
59
else ()
59
 
    ADD_EXECUTABLE(dict_hw_test 
60
 
        dict_hw_test.cpp
 
60
    ADD_EXECUTABLE(dict_hw_cli
 
61
        dict_hw_cli.cpp
61
62
        dict_hw.h
62
63
    )
 
64
    SET_TARGET_PROPERTIES(dict_hw_cli PROPERTIES OUTPUT_NAME dict_hw)
63
65
endif ()
64
66
 
65
 
TARGET_LINK_LIBRARIES(dict_hw_test dict_hw)
 
67
 
 
68
TARGET_LINK_LIBRARIES(dict_hw_cli dict_hw)
66
69
 
67
70
    
68
71