mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 07:34:06 +00:00
Keep Visual Studio happy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26516 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5a3cf8de5d
commit
973e0ef839
@ -20,7 +20,7 @@
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\include;..;..\..\utils\tablegen"
|
||||
PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_CONSOLE;__STDC_LIMIT_MACROS"
|
||||
PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_CONSOLE;__STDC_LIMIT_MACROS"
|
||||
StringPooling="TRUE"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
@ -144,7 +144,8 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Flexing $(InputFileName)"
|
||||
CommandLine="..\doflex.cmd debug $(InputName) $(InputPath)"
|
||||
CommandLine="..\doflex.cmd debug $(InputName) $(InputPath)
|
||||
"
|
||||
Outputs="$(InputName).cpp"/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
@ -152,7 +153,8 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Flexing $(InputFileName)"
|
||||
CommandLine="..\doflex.cmd release $(InputName) $(InputPath)"
|
||||
CommandLine="..\doflex.cmd release $(InputName) $(InputPath)
|
||||
"
|
||||
Outputs="$(InputName).cpp"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
@ -163,7 +165,8 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Bisoning $(InputFileName)"
|
||||
CommandLine="..\dobison.cmd File debug $(InputName) $(InputPath)"
|
||||
CommandLine="..\dobison.cmd File debug $(InputName) $(InputPath)
|
||||
"
|
||||
Outputs="$(InputName).cpp;$(InputName).h;$(InputName).output"/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
@ -171,13 +174,17 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Bisoning $(InputFileName)"
|
||||
CommandLine="..\dobison.cmd File release $(InputName) $(InputPath)"
|
||||
CommandLine="..\dobison.cmd File release $(InputName) $(InputPath)
|
||||
"
|
||||
Outputs="$(InputName).cpp;$(InputName).h;$(InputName).output"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\InstrInfoEmitter.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\IntrinsicEmitter.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\Record.cpp">
|
||||
</File>
|
||||
@ -207,6 +214,9 @@
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\CodeGenInstruction.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\CodeGenIntrinsics.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\CodeGenRegisters.h">
|
||||
</File>
|
||||
@ -219,6 +229,9 @@
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\InstrInfoEmitter.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\IntrinsicEmitter.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\utils\TableGen\Record.h">
|
||||
</File>
|
||||
|
@ -116,16 +116,15 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Performing TableGen Step"
|
||||
CommandLine="..\$(IntDir)\TableGen.exe -gen-register-enums -I ..\..\lib\Target\X86 $(InputPath) -o X86GenRegisterNames.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-register-desc-header -I ..\..\lib\Target\X86 $(InputPath) -o X86GenRegisterInfo.h.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-register-desc -I ..\..\lib\Target\X86 $(InputPath) -o X86GenRegisterInfo.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-instr-enums -I ..\..\lib\Target\X86 $(InputPath) -o X86GenInstrNames.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-instr-desc -I ..\..\lib\Target\X86 $(InputPath) -o X86GenInstrInfo.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-asm-writer -I ..\..\lib\Target\X86 $(InputPath) -o X86GenAsmWriter.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-asm-writer -asmwriternum=1 -I ..\..\lib\Target\X86 $(InputPath) -o X86GenAsmWriter1.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-dag-isel -I ..\..\lib\Target\X86 $(InputPath) -o X86GenDAGISel.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-subtarget -I ..\..\lib\Target\X86 $(InputPath) -o X86GenSubtarget.inc
|
||||
"
|
||||
CommandLine="..\$(IntDir)\TableGen.exe -gen-register-enums -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenRegisterNames.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-register-desc-header -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenRegisterInfo.h.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-register-desc -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenRegisterInfo.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-instr-enums -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenInstrNames.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-instr-desc -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenInstrInfo.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-asm-writer -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenAsmWriter.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-asm-writer -asmwriternum=1 -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenAsmWriter1.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-dag-isel -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenDAGISel.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-subtarget -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenSubtarget.inc"
|
||||
AdditionalDependencies="$(InputDir)X86InstrInfo.td;$(InputDir)X86RegisterInfo.td;$(InputDir)..\Target.td;$(ProjectDir)..\$(IntDir)\TableGen.exe"
|
||||
Outputs="X86GenRegisterNames.inc;X86GenRegisterInfo.h.inc;X86GenRegisterInfo.inc;X86GenInstrNames.inc;X86GenInstrInfo.inc;X86GenAsmWriter.inc;X86GenAsmWriter1.inc;X86GenDAGISel.inc;X86GenSubtarget.inc"/>
|
||||
</FileConfiguration>
|
||||
@ -134,16 +133,15 @@
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Performing TableGen Step"
|
||||
CommandLine="..\$(IntDir)\TableGen.exe -gen-register-enums -I ..\..\lib\Target\X86 $(InputPath) -o X86GenRegisterNames.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-register-desc-header -I ..\..\lib\Target\X86 $(InputPath) -o X86GenRegisterInfo.h.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-register-desc -I ..\..\lib\Target\X86 $(InputPath) -o X86GenRegisterInfo.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-instr-enums -I ..\..\lib\Target\X86 $(InputPath) -o X86GenInstrNames.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-instr-desc -I ..\..\lib\Target\X86 $(InputPath) -o X86GenInstrInfo.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-asm-writer -I ..\..\lib\Target\X86 $(InputPath) -o X86GenAsmWriter.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-asm-writer -asmwriternum=1 -I ..\..\lib\Target\X86 $(InputPath) -o X86GenAsmWriter1.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-dag-isel -I ..\..\lib\Target\X86 $(InputPath) -o X86GenDAGISel.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-subtarget -I ..\..\lib\Target\X86 $(InputPath) -o X86GenSubtarget.inc
|
||||
"
|
||||
CommandLine="..\$(IntDir)\TableGen.exe -gen-register-enums -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenRegisterNames.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-register-desc-header -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenRegisterInfo.h.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-register-desc -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenRegisterInfo.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-instr-enums -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenInstrNames.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-instr-desc -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenInstrInfo.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-asm-writer -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenAsmWriter.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-asm-writer -asmwriternum=1 -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenAsmWriter1.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-dag-isel -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenDAGISel.inc
|
||||
..\$(IntDir)\TableGen.exe -gen-subtarget -I ..\..\lib\Target\X86 -I ..\..\include $(InputPath) -o X86GenSubtarget.inc"
|
||||
AdditionalDependencies="$(InputDir)X86InstrInfo.td;$(InputDir)X86RegisterInfo.td;$(InputDir)..\Target.td;$(ProjectDir)..\$(IntDir)\TableGen.exe"
|
||||
Outputs="X86GenRegisterNames.inc;X86GenRegisterInfo.h.inc;X86GenRegisterInfo.inc;X86GenInstrNames.inc;X86GenInstrInfo.inc;X86GenAsmWriter.inc;X86GenAsmWriter1.inc;X86GenDAGISel.inc;X86GenSubtarget.inc"/>
|
||||
</FileConfiguration>
|
||||
|
Loading…
x
Reference in New Issue
Block a user