test.rc 388 B

1234567891011121314151617
  1. #ifdef CMAKE_RCDEFINE
  2. // This line can compile with either an unquoted or a quoted string
  3. 1025 TEXTFILE CMAKE_RCDEFINE
  4. #ifndef CMAKE_RCDEFINE_NO_QUOTED_STRINGS
  5. // This block can only be compiled if CMAKE_RCDEFINE preprocesses
  6. // to a double quoted string
  7. STRINGTABLE
  8. BEGIN
  9. 1026 CMAKE_RCDEFINE
  10. END
  11. #endif
  12. #else
  13. #error "resource compiler did not get defines from command line!"
  14. #endif