Ticket #42152: patch-CMakeLists.txt.diff

File patch-CMakeLists.txt.diff, 1.1 KB (added by neurodroid (Christoph Schmidt-Hieber), 10 years ago)

libbiosig patch without getline from win32

  • CMakeLists.txt

    Only in ./: 11073-10102-AnnexB.i
    diff -ur ../biosig4c++-1.5.10/CMakeLists.txt ./CMakeLists.txt
    old new  
    77# Version number
    88set (libbiosig_VERSION_MAJOR 1)
    99set (libbiosig_VERSION_MINOR 5)
    10 set (libbiosig_VERSION_PATCH 0)
     10set (libbiosig_VERSION_PATCH 10)
    1111
    1212find_program (GAWK NAMES gawk)
    1313
     
    2323  DEPENDS units.awk extern/units.csv
    2424)
    2525
     26add_custom_target (annexb
     27  COMMAND ${GAWK} -f annotatedECG.awk extern/11073-10102-AnnexB.txt > "11073-10102-AnnexB.i"
     28  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
     29  DEPENDS annotatedECG.awk extern/11073-10102-AnnexB.txt
     30)
     31
    2632set (headers
    2733  t210/abfheadr.h
    2834  XMLParser/tinyxml.h
     
    8086     )
    8187endif ()
    8288
    83 add_dependencies (biosigstatic eventcodes units)
    84 add_dependencies (biosigshared eventcodes units)
     89add_dependencies (biosigstatic eventcodes units annexb)
     90add_dependencies (biosigshared eventcodes units annexb)
    8591
    8692if (USE_ZLIB)
    8793  add_definitions (-D=WITH_ZLIB)