test.rc 449 B

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