/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-27 09:35:57 UTC
  • Revision ID: csa@dside.dyndns.org-20100427093557-gxvt9b1n68tpig03
Enchanced error checking and timings measurements, Windows-related fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
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)
59
58
else ()
60
59
    ADD_EXECUTABLE(dict_hw_cli
61
60
        dict_hw_cli.cpp
62
61
        dict_hw.h
63
62
    )
64
 
    SET_TARGET_PROPERTIES(dict_hw_cli PROPERTIES OUTPUT_NAME dict_hw)
65
63
endif ()
66
64
 
67
 
 
 
65
SET_TARGET_PROPERTIES(dict_hw_cli PROPERTIES OUTPUT_NAME dict_hw)
68
66
TARGET_LINK_LIBRARIES(dict_hw_cli dict_hw)
69
67
 
70
68