Skip to content
  • Brad King's avatar
    Normalize add_custom_command OUTPUT names (#10485) · a75a0a14
    Brad King authored
    Previously the OUTPUT arguments of add_custom_command were not
    slash-normalized but those of add_library and add_executable were.
    This caused the example
    
      add_custom_command(OUTPUT a//b.c ...)
      add_library(... a//b.c ...)
    
    to fail at build time with "no rule to make a/b.c".  Fix this and modify
    the CustomCommand test to try it.
    a75a0a14