summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeFindXCode.cmake
Commit message (Expand)AuthorAgeFilesLines
* Simplify CMake per-source license noticesBrad King2016-09-271-12/+2
* Xcode: Switch to internal CMAKE_MAKE_PROGRAM lookup by generator (#15324)Brad King2015-01-291-6/+2
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-2/+2
* Modules: Fix spelling 'To distributed' -> 'To distribute'Todd Gamblin2010-08-091-1/+1
* Convert CMake non-find modules to BSD LicenseBrad King2009-09-281-0/+14
* ENH: add trycompile code for xcodeBill Hoffman2005-02-011-0/+6
a> 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
static cmVS7FlagTable cmVS141LinkFlagTable[] = {

  // Enum Properties
  { "ShowProgress", "", "Not Set", "NotSet", 0 },
  { "ShowProgress", "VERBOSE", "Display all progress messages", "LinkVerbose",
    0 },
  { "ShowProgress", "VERBOSE:Lib", "For Libraries Searched", "LinkVerboseLib",
    0 },
  { "ShowProgress", "VERBOSE:ICF",
    "About COMDAT folding during optimized linking", "LinkVerboseICF", 0 },
  { "ShowProgress", "VERBOSE:REF",
    "About data removed during optimized linking", "LinkVerboseREF", 0 },
  { "ShowProgress", "VERBOSE:SAFESEH", "About Modules incompatible with SEH",
    "LinkVerboseSAFESEH", 0 },
  { "ShowProgress", "VERBOSE:CLR",
    "About linker activity related to managed code", "LinkVerboseCLR", 0 },

  { "ForceFileOutput", "FORCE", "Enabled", "Enabled", 0 },
  { "ForceFileOutput", "FORCE:MULTIPLE", "Multiply Defined Symbol Only",
    "MultiplyDefinedSymbolOnly", 0 },
  { "ForceFileOutput", "FORCE:UNRESOLVED", "Undefined Symbol Only",
    "UndefinedSymbolOnly", 0 },

  { "CreateHotPatchableImage", "FUNCTIONPADMIN", "Enabled", "Enabled", 0 },
  { "CreateHotPatchableImage", "FUNCTIONPADMIN:5", "X86 Image Only",
    "X86Image", 0 },
  { "CreateHotPatchableImage", "FUNCTIONPADMIN:6", "X64 Image Only",
    "X64Image", 0 },
  { "CreateHotPatchableImage", "FUNCTIONPADMIN:16", "Itanium Image Only",
    "ItaniumImage", 0 },

  // correct flags for uac should be /MANIFESTUAC, but some projects already
  // use this bug to access uac field, so keep these for compatibility
  { "UACExecutionLevel", "level='asInvoker'", "asInvoker", "AsInvoker", 0 },
  { "UACExecutionLevel", "level='highestAvailable'", "highestAvailable",
    "HighestAvailable", 0 },
  { "UACExecutionLevel", "level='requireAdministrator'",
    "requireAdministrator", "RequireAdministrator", 0 },

  { "GenerateDebugInformation", "DEBUG:FASTLINK",
    "Generate Debug Information optimized for faster links", "DebugFastLink",
    cmVS7FlagTable::CaseInsensitive },
  { "GenerateDebugInformation", "DEBUG:FULL",
    "Generate Debug Information optimized for sharing and publishing",
    "DebugFull", cmVS7FlagTable::CaseInsensitive },
  { "GenerateDebugInformation", "DEBUG:NONE",
    "Produces no debugging information", "false",
    cmVS7FlagTable::CaseInsensitive },
  { "GenerateDebugInformation", "DEBUG", "Generate Debug Information", "true",
    cmVS7FlagTable::CaseInsensitive },

  { "SubSystem", "", "Not Set", "NotSet", 0 },
  { "SubSystem", "SUBSYSTEM:CONSOLE", "Console", "Console", 0 },
  { "SubSystem", "SUBSYSTEM:WINDOWS", "Windows", "Windows", 0 },
  { "SubSystem", "SUBSYSTEM:NATIVE", "Native", "Native", 0 },
  { "SubSystem", "SUBSYSTEM:EFI_APPLICATION", "EFI Application",
    "EFI Application", 0 },
  { "SubSystem", "SUBSYSTEM:EFI_BOOT_SERVICE_DRIVER",
    "EFI Boot Service Driver", "EFI Boot Service Driver", 0 },
  { "SubSystem", "SUBSYSTEM:EFI_ROM", "EFI ROM", "EFI ROM", 0 },
  { "SubSystem", "SUBSYSTEM:EFI_RUNTIME_DRIVER", "EFI Runtime", "EFI Runtime",
    0 },
  { "SubSystem", "SUBSYSTEM:POSIX", "POSIX", "POSIX", 0 },

  { "Driver", "", "Not Set", "NotSet", 0 },
  { "Driver", "Driver", "Driver", "Driver", 0 },
  { "Driver", "DRIVER:UPONLY", "UP Only", "UpOnly", 0 },
  { "Driver", "DRIVER:WDM", "WDM", "WDM", 0 },

  { "LinkTimeCodeGeneration", "", "Default", "Default", 0 },
  { "LinkTimeCodeGeneration", "LTCG:incremental",
    "Use Fast Link Time Code Generation", "UseFastLinkTimeCodeGeneration", 0 },
  { "LinkTimeCodeGeneration", "LTCG", "Use Link Time Code Generation",
    "UseLinkTimeCodeGeneration", 0 },
  { "LinkTimeCodeGeneration", "LTCG:PGInstrument",
    "Profile Guided Optimization - Instrument", "PGInstrument", 0 },
  { "LinkTimeCodeGeneration", "LTCG:PGOptimize",
    "Profile Guided Optimization - Optimization", "PGOptimization", 0 },
  { "LinkTimeCodeGeneration", "LTCG:PGUpdate",
    "Profile Guided Optimization - Update", "PGUpdate", 0 },

  { "GenerateWindowsMetadata", "WINMD", "Yes", "true", 0 },
  { "GenerateWindowsMetadata", "WINMD:NO", "No", "false", 0 },

  { "WindowsMetadataSignHash", "WINMDSIGNHASH:SHA1", "SHA1", "SHA1", 0 },
  { "WindowsMetadataSignHash", "WINMDSIGNHASH:SHA256", "SHA256", "SHA256", 0 },
  { "WindowsMetadataSignHash", "WINMDSIGNHASH:SHA384", "SHA384", "SHA384", 0 },
  { "WindowsMetadataSignHash", "WINMDSIGNHASH:SHA512", "SHA512", "SHA512", 0 },

  { "TargetMachine", "", "Not Set", "NotSet", 0 },
  { "TargetMachine", "MACHINE:ARM", "MachineARM", "MachineARM", 0 },
  { "TargetMachine", "MACHINE:ARM64", "MachineARM64", "MachineARM64", 0 },
  { "TargetMachine", "MACHINE:EBC", "MachineEBC", "MachineEBC", 0 },
  { "TargetMachine", "MACHINE:IA64", "MachineIA64", "MachineIA64", 0 },
  { "TargetMachine", "MACHINE:MIPS", "MachineMIPS", "MachineMIPS", 0 },
  { "TargetMachine", "MACHINE:MIPS16", "MachineMIPS16", "MachineMIPS16", 0 },
  { "TargetMachine", "MACHINE:MIPSFPU", "MachineMIPSFPU", "MachineMIPSFPU",
    0 },
  { "TargetMachine", "MACHINE:MIPSFPU16", "MachineMIPSFPU16",
    "MachineMIPSFPU16", 0 },
  { "TargetMachine", "MACHINE:SH4", "MachineSH4", "MachineSH4", 0 },
  { "TargetMachine", "MACHINE:THUMB", "MachineTHUMB", "MachineTHUMB", 0 },
  { "TargetMachine", "MACHINE:X64", "MachineX64", "MachineX64", 0 },
  { "TargetMachine", "MACHINE:X86", "MachineX86", "MachineX86", 0 },

  { "CLRThreadAttribute", "CLRTHREADATTRIBUTE:MTA", "MTA threading attribute",
    "MTAThreadingAttribute", 0 },
  { "CLRThreadAttribute", "CLRTHREADATTRIBUTE:STA", "STA threading attribute",
    "STAThreadingAttribute", 0 },
  { "CLRThreadAttribute", "CLRTHREADATTRIBUTE:NONE",
    "Default threading attribute", "DefaultThreadingAttribute", 0 },

  { "CLRImageType", "CLRIMAGETYPE:IJW", "Force IJW image", "ForceIJWImage",
    0 },
  { "CLRImageType", "CLRIMAGETYPE:PURE", "Force Pure IL Image",
    "ForcePureILImage", 0 },
  { "CLRImageType", "CLRIMAGETYPE:SAFE", "Force Safe IL Image",
    "ForceSafeILImage", 0 },
  { "CLRImageType", "", "Default image type", "Default", 0 },

  { "SignHash", "CLRSIGNHASH:SHA1", "SHA1", "SHA1", 0 },
  { "SignHash", "CLRSIGNHASH:SHA256", "SHA256", "SHA256", 0 },
  { "SignHash", "CLRSIGNHASH:SHA384", "SHA384", "SHA384", 0 },
  { "SignHash", "CLRSIGNHASH:SHA512", "SHA512", "SHA512", 0 },

  { "LinkErrorReporting", "ERRORREPORT:PROMPT", "PromptImmediately",
    "PromptImmediately", 0 },
  { "LinkErrorReporting", "ERRORREPORT:QUEUE", "Queue For Next Login",
    "QueueForNextLogin", 0 },
  { "LinkErrorReporting", "ERRORREPORT:SEND", "Send Error Report",
    "SendErrorReport", 0 },
  { "LinkErrorReporting", "ERRORREPORT:NONE", "No Error Report",
    "NoErrorReport", 0 },

  { "CLRSupportLastError", "CLRSupportLastError", "Enabled", "Enabled", 0 },
  { "CLRSupportLastError", "CLRSupportLastError:NO", "Disabled", "Disabled",
    0 },
  { "CLRSupportLastError", "CLRSupportLastError:SYSTEMDLL", "System Dlls Only",
    "SystemDlls", 0 },

  // Bool Properties
  { "LinkIncremental", "INCREMENTAL:NO", "", "false", 0 },
  { "LinkIncremental", "INCREMENTAL", "", "true", 0 },
  { "SuppressStartupBanner", "NOLOGO", "", "true", 0 },
  { "LinkStatus", "LTCG:NOSTATUS", "", "false", 0 },
  { "LinkStatus", "LTCG:STATUS", "", "true", 0 },
  { "PreventDllBinding", "ALLOWBIND:NO", "", "false", 0 },
  { "PreventDllBinding", "ALLOWBIND", "", "true", 0 },
  { "TreatLinkerWarningAsErrors", "WX:NO", "", "false", 0 },
  { "TreatLinkerWarningAsErrors", "WX", "", "true", 0 },
  { "IgnoreAllDefaultLibraries", "NODEFAULTLIB", "", "true", 0 },
  { "GenerateManifest", "MANIFEST:NO", "", "false", 0 },
  { "GenerateManifest", "MANIFEST", "", "true", 0 },
  { "AllowIsolation", "ALLOWISOLATION:NO", "", "false", 0 },

  // correct flags for uac should be /MANIFESTUAC, but some projects already
  // use this bug to access uac field, so keep these for compatibility
  { "UACUIAccess", "uiAccess='false'", "", "false", 0 },
  { "UACUIAccess", "uiAccess='true'", "", "true", 0 },

  { "ManifestEmbed", "manifest:embed", "", "true", 0 },
  { "MapExports", "MAPINFO:EXPORTS", "", "true", 0 },
  { "AssemblyDebug", "ASSEMBLYDEBUG:DISABLE", "", "false", 0 },
  { "AssemblyDebug", "ASSEMBLYDEBUG", "", "true", 0 },
  { "LargeAddressAware", "LARGEADDRESSAWARE:NO", "", "false", 0 },
  { "LargeAddressAware", "LARGEADDRESSAWARE", "", "true", 0 },
  { "TerminalServerAware", "TSAWARE:NO", "", "false", 0 },
  { "TerminalServerAware", "TSAWARE", "", "true", 0 },
  { "SwapRunFromCD", "SWAPRUN:CD", "", "true", 0 },
  { "SwapRunFromNET", "SWAPRUN:NET", "", "true", 0 },
  { "OptimizeReferences", "OPT:NOREF", "", "false", 0 },
  { "OptimizeReferences", "OPT:REF", "", "true", 0 },
  { "EnableCOMDATFolding", "OPT:NOICF", "", "false", 0 },
  { "EnableCOMDATFolding", "OPT:ICF", "", "true", 0 },
  { "IgnoreEmbeddedIDL", "IGNOREIDL", "", "true", 0 },
  { "AppContainer", "APPCONTAINER", "", "true", 0 },
  { "WindowsMetadataLinkDelaySign", "WINMDDELAYSIGN:NO", "", "false", 0 },
  { "WindowsMetadataLinkDelaySign", "WINMDDELAYSIGN", "", "true", 0 },
  { "NoEntryPoint", "NOENTRY", "", "true", 0 },
  { "SetChecksum", "RELEASE", "", "true", 0 },
  { "RandomizedBaseAddress", "DYNAMICBASE:NO", "", "false", 0 },
  { "RandomizedBaseAddress", "DYNAMICBASE", "", "true", 0 },
  { "FixedBaseAddress", "FIXED:NO", "", "false", 0 },
  { "FixedBaseAddress", "FIXED", "", "true", 0 },
  { "DataExecutionPrevention", "NXCOMPAT:NO", "", "false", 0 },
  { "DataExecutionPrevention", "NXCOMPAT", "", "true", 0 },
  { "TurnOffAssemblyGeneration", "NOASSEMBLY", "", "true", 0 },
  { "SupportUnloadOfDelayLoadedDLL", "DELAY:UNLOAD", "", "true", 0 },
  { "SupportNobindOfDelayLoadedDLL", "DELAY:NOBIND", "", "true", 0 },
  { "Profile", "PROFILE", "", "true", 0 },
  { "LinkDelaySign", "DELAYSIGN:NO", "", "false", 0 },
  { "LinkDelaySign", "DELAYSIGN", "", "true", 0 },
  { "CLRUnmanagedCodeCheck", "CLRUNMANAGEDCODECHECK:NO", "", "false", 0 },
  { "CLRUnmanagedCodeCheck", "CLRUNMANAGEDCODECHECK", "", "true", 0 },
  { "DetectOneDefinitionRule", "ODR", "", "true", 0 },
  { "ImageHasSafeExceptionHandlers", "SAFESEH:NO", "", "false", 0 },
  { "ImageHasSafeExceptionHandlers", "SAFESEH", "", "true", 0 },
  { "LinkDLL", "DLL", "", "true", 0 },

  // Bool Properties With Argument
  { "EnableUAC", "MANIFESTUAC:", "", "",
    cmVS7FlagTable::UserValueRequired | cmVS7FlagTable::SpaceAppendable },
  { "GenerateMapFile", "MAP", "", "true",
    cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue },
  { "MapFileName", "MAP:", "Generate Map File", "",
    cmVS7FlagTable::UserValueRequired },

  // String List Properties
  { "AdditionalLibraryDirectories",
    "LIBPATH:", "Additional Library Directories", "",
    cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  { "Natvis", "NATVIS:", "Natvis files", "",
    cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  // Skip [AdditionalDependencies] - no command line Switch.
  { "IgnoreSpecificDefaultLibraries",
    "NODEFAULTLIB:", "Ignore Specific Default Libraries", "",
    cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  { "AddModuleNamesToAssembly", "ASSEMBLYMODULE:", "Add Module to Assembly",
    "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  { "EmbedManagedResourceFile",
    "ASSEMBLYRESOURCE:", "Embed Managed Resource File", "",
    cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  { "ForceSymbolReferences", "INCLUDE:", "Force Symbol References", "",
    cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  { "DelayLoadDLLs", "DELAYLOAD:", "Delay Loaded Dlls", "",
    cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  { "AssemblyLinkResource", "ASSEMBLYLINKRESOURCE:", "Assembly Link Resource",
    "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  { "AdditionalManifestDependencies",
    "MANIFESTDEPENDENCY:", "Additional Manifest Dependencies", "",
    cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  { "ManifestInput", "manifestinput:", "Manifest Input", "",
    cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },

  // String Properties
  { "OutputFile", "OUT:", "Output File", "", cmVS7FlagTable::UserValue },
  { "Version", "VERSION:", "Version", "", cmVS7FlagTable::UserValue },
  { "SpecifySectionAttributes", "SECTION:", "Specify Section Attributes", "",
    cmVS7FlagTable::UserValue },
  { "MSDOSStubFileName", "STUB:", "MS-DOS Stub File Name", "",
    cmVS7FlagTable::UserValue },
  // Skip [TrackerLogDirectory] - no command line Switch.
  { "ModuleDefinitionFile", "DEF:", "Module Definition File", "",
    cmVS7FlagTable::UserValue },
  { "ManifestFile", "ManifestFile:", "Manifest File", "",
    cmVS7FlagTable::UserValue },
  { "ProgramDatabaseFile", "PDB:", "Generate Program Database File", "",
    cmVS7FlagTable::UserValue },
  { "StripPrivateSymbols", "PDBSTRIPPED:", "Strip Private Symbols", "",
    cmVS7FlagTable::UserValue },
  // Skip [MapFileName] - no command line Switch.
  // Skip [MinimumRequiredVersion] - no command line Switch.
  { "HeapReserveSize", "HEAP:", "Heap Reserve Size", "",
    cmVS7FlagTable::UserValue },
  // Skip [HeapCommitSize] - no command line Switch.
  { "StackReserveSize", "STACK:", "Stack Reserve Size", "",
    cmVS7FlagTable::UserValue },
  // Skip [StackCommitSize] - no command line Switch.
  { "FunctionOrder", "ORDER:@", "Function Order", "",
    cmVS7FlagTable::UserValue },
  { "ProfileGuidedDatabase", "PGD:", "Profile Guided Database", "",
    cmVS7FlagTable::UserValue },
  { "MidlCommandFile", "MIDL:@", "MIDL Commands", "",
    cmVS7FlagTable::UserValue },
  { "MergedIDLBaseFileName", "IDLOUT:", "Merged IDL Base File Name", "",
    cmVS7FlagTable::UserValue },
  { "TypeLibraryFile", "TLBOUT:", "Type Library", "",
    cmVS7FlagTable::UserValue },
  { "WindowsMetadataFile", "WINMDFILE:", "Windows Metadata File", "",
    cmVS7FlagTable::UserValue },
  { "WindowsMetadataLinkKeyFile", "WINMDKEYFILE:", "Windows Metadata Key File",
    "", cmVS7FlagTable::UserValue },
  { "WindowsMetadataKeyContainer", "WINMDKEYCONTAINER:",
    "Windows Metadata Key Container", "", cmVS7FlagTable::UserValue },
  { "EntryPointSymbol", "ENTRY:", "Entry Point", "",
    cmVS7FlagTable::UserValue },
  { "BaseAddress", "BASE:", "Base Address", "", cmVS7FlagTable::UserValue },
  { "ImportLibrary", "IMPLIB:", "Import Library", "",
    cmVS7FlagTable::UserValue },
  { "MergeSections", "MERGE:", "Merge Sections", "",
    cmVS7FlagTable::UserValue },
  { "LinkKeyFile", "KEYFILE:", "Key File", "", cmVS7FlagTable::UserValue },
  { "KeyContainer", "KEYCONTAINER:", "Key Container", "",
    cmVS7FlagTable::UserValue },
  // Skip [AdditionalOptions] - no command line Switch.
  { 0, 0, 0, 0, 0 }
};