cmVS10CudaHostFlagTable.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. static cmVS7FlagTable cmVS10CudaHostFlagTable[] = {
  2. //{"Optimization", "", "<inherit from host>", "InheritFromHost", 0},
  3. { "Optimization", "Od", "Disabled", "Od", 0 },
  4. { "Optimization", "O1", "Minimize Size", "O1", 0 },
  5. { "Optimization", "O2", "Maximize Speed", "O2", 0 },
  6. { "Optimization", "Ox", "Full Optimization", "O3", 0 },
  7. //{"Runtime", "", "<inherit from host>", "InheritFromHost", 0},
  8. { "Runtime", "MT", "Multi-Threaded", "MT", 0 },
  9. { "Runtime", "MTd", "Multi-Threaded Debug", "MTd", 0 },
  10. { "Runtime", "MD", "Multi-Threaded DLL", "MD", 0 },
  11. { "Runtime", "MDd", "Multi-threaded Debug DLL", "MDd", 0 },
  12. { "Runtime", "ML", "Single-Threaded", "ML", 0 },
  13. { "Runtime", "MLd", "Single-Threaded Debug", "MLd", 0 },
  14. //{"RuntimeChecks", "", "<inherit from host>", "InheritFromHost", 0},
  15. //{"RuntimeChecks", "", "Default", "Default", 0},
  16. { "RuntimeChecks", "RTCs", "Stack Frames", "RTCs", 0 },
  17. { "RuntimeChecks", "RTCu", "Uninitialized Variables", "RTCu", 0 },
  18. { "RuntimeChecks", "RTC1", "Both", "RTC1", 0 },
  19. //{"TypeInfo", "", "<inherit from host>", "InheritFromHost", 0},
  20. { "TypeInfo", "GR", "Yes", "true", 0 },
  21. { "TypeInfo", "GR-", "No", "false", 0 },
  22. //{"Warning", "", "<inherit from host>", "InheritFromHost", 0},
  23. { "Warning", "W0", "Off: Turn Off All Warnings", "W0", 0 },
  24. { "Warning", "W1", "Level 1", "W1", 0 },
  25. { "Warning", "W2", "Level 2", "W2", 0 },
  26. { "Warning", "W3", "Level 3", "W3", 0 },
  27. { "Warning", "W4", "Level 4", "W4", 0 },
  28. { "Warning", "Wall", "Enable All Warnings", "Wall", 0 },
  29. { 0, 0, 0, 0, 0 }
  30. };