mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
Rename ddmd text occurrences
sed -i "s/ddmd/dmd/g" -i **/*.sdl sed -i "s/ddmd/dmd/g" -i **/*.mak sed -i "s/ddmd/dmd/g" -i **/*.visualdproj sed -i "s/ddmd/dmd/g" -i **/*.vcxproj sed -i "s/ddmd/dmd/g" -i **/*.filters sed -i "s/ddmd/dmd/g" -i CODEOWNERS
This commit is contained in:
parent
bc6f0b7ee4
commit
ed9a730082
8 changed files with 568 additions and 568 deletions
44
CODEOWNERS
44
CODEOWNERS
|
@ -10,31 +10,31 @@
|
|||
# when someone opens a pull request that modifies code that they own.
|
||||
# Later matches take precedence.
|
||||
|
||||
src/ddmd/access.d @MartinNowak
|
||||
src/ddmd/astbase* @RazvanN7
|
||||
src/ddmd/astcodegen.d @RazvanN7
|
||||
src/ddmd/asttypename.d @UplinkCoder
|
||||
src/ddmd/builtin.d @klickvebot @WalterBright
|
||||
src/ddmd/cond.d @mathias-lang-sociomantic @Geod24
|
||||
src/ddmd/console.d @CyberShadow
|
||||
src/ddmd/cppmangle.d @ibuclaw
|
||||
src/ddmd/ctfeexpr.d @UplinkCoder
|
||||
src/ddmd/doc.d @andralex @jacob-carlborg
|
||||
src/ddmd/hdrgen.d @UplinkCoder @WalterBright
|
||||
src/ddmd/mars.d @MartinNowak @mathias-lang-sociomantic @Geod24 @rainers @UplinkCoder @WalterBright
|
||||
src/ddmd/objc* @jacob-carlborg
|
||||
src/ddmd/permissivevisitor.d @RazvanN7
|
||||
src/ddmd/target.d @ibuclaw @MartinNowak
|
||||
src/ddmd/transitivevisitor.d @RazvanN7
|
||||
src/ddmd/vcbuild @rainers
|
||||
src/dmd/access.d @MartinNowak
|
||||
src/dmd/astbase* @RazvanN7
|
||||
src/dmd/astcodegen.d @RazvanN7
|
||||
src/dmd/asttypename.d @UplinkCoder
|
||||
src/dmd/builtin.d @klickvebot @WalterBright
|
||||
src/dmd/cond.d @mathias-lang-sociomantic @Geod24
|
||||
src/dmd/console.d @CyberShadow
|
||||
src/dmd/cppmangle.d @ibuclaw
|
||||
src/dmd/ctfeexpr.d @UplinkCoder
|
||||
src/dmd/doc.d @andralex @jacob-carlborg
|
||||
src/dmd/hdrgen.d @UplinkCoder @WalterBright
|
||||
src/dmd/mars.d @MartinNowak @mathias-lang-sociomantic @Geod24 @rainers @UplinkCoder @WalterBright
|
||||
src/dmd/objc* @jacob-carlborg
|
||||
src/dmd/permissivevisitor.d @RazvanN7
|
||||
src/dmd/target.d @ibuclaw @MartinNowak
|
||||
src/dmd/transitivevisitor.d @RazvanN7
|
||||
src/dmd/vcbuild @rainers
|
||||
|
||||
# GitHub's implementation of the CODEOWNERS format is buggy, so this might not work
|
||||
src/ddmd/*.h @ibuclaw
|
||||
src/dmd/*.h @ibuclaw
|
||||
|
||||
src/ddmd/* @WalterBright
|
||||
src/ddmd/backend/* @WalterBright
|
||||
src/ddmd/root/* @WalterBright
|
||||
src/ddmd/tk/* @WalterBright
|
||||
src/dmd/* @WalterBright
|
||||
src/dmd/backend/* @WalterBright
|
||||
src/dmd/root/* @WalterBright
|
||||
src/dmd/tk/* @WalterBright
|
||||
|
||||
# CI & automation
|
||||
posix.mak @CyberShadow @MartinNowak @wilzbach
|
||||
|
|
30
dub.sdl
30
dub.sdl
|
@ -10,7 +10,7 @@ dependency ":parser" version="*"
|
|||
subPackage {
|
||||
name "root"
|
||||
targetType "library"
|
||||
sourcePaths "src/ddmd/root"
|
||||
sourcePaths "src/dmd/root"
|
||||
}
|
||||
|
||||
subPackage {
|
||||
|
@ -19,15 +19,15 @@ subPackage {
|
|||
sourcePaths
|
||||
|
||||
sourceFiles \
|
||||
"src/ddmd/console.d" \
|
||||
"src/ddmd/entity.d" \
|
||||
"src/ddmd/errors.d" \
|
||||
"src/ddmd/globals.d" \
|
||||
"src/ddmd/id.d" \
|
||||
"src/ddmd/identifier.d" \
|
||||
"src/ddmd/lexer.d" \
|
||||
"src/ddmd/tokens.d" \
|
||||
"src/ddmd/utf.d"
|
||||
"src/dmd/console.d" \
|
||||
"src/dmd/entity.d" \
|
||||
"src/dmd/errors.d" \
|
||||
"src/dmd/globals.d" \
|
||||
"src/dmd/id.d" \
|
||||
"src/dmd/identifier.d" \
|
||||
"src/dmd/lexer.d" \
|
||||
"src/dmd/tokens.d" \
|
||||
"src/dmd/utf.d"
|
||||
|
||||
preGenerateCommands `cd "$${DUB_PACKAGE_DIR}" && ./config.sh generated/dub VERSION /etc`
|
||||
stringImportPaths "generated/dub"
|
||||
|
@ -41,11 +41,11 @@ subPackage {
|
|||
sourcePaths
|
||||
|
||||
sourceFiles \
|
||||
"src/ddmd/astbase.d" \
|
||||
"src/ddmd/parse.d" \
|
||||
"src/ddmd/transitivevisitor.d" \
|
||||
"src/ddmd/permissivevisitor.d" \
|
||||
"src/ddmd/strictvisitor.d"
|
||||
"src/dmd/astbase.d" \
|
||||
"src/dmd/parse.d" \
|
||||
"src/dmd/transitivevisitor.d" \
|
||||
"src/dmd/permissivevisitor.d" \
|
||||
"src/dmd/strictvisitor.d"
|
||||
|
||||
dependency "dmd:lexer" version="*"
|
||||
}
|
||||
|
|
|
@ -70,7 +70,7 @@ SYSCONFDIR=/etc
|
|||
TMP?=/tmp
|
||||
PGO_DIR=$(abspath pgo)
|
||||
|
||||
D = ddmd
|
||||
D = dmd
|
||||
|
||||
C=$D/backend
|
||||
TK=$D/tk
|
||||
|
@ -630,10 +630,10 @@ HTMLS=$(addprefix $(DOC_OUTPUT_DIR)/, \
|
|||
$(call D2HTML, $(SRC_DOCUMENTABLES)))
|
||||
|
||||
# For each module, define a rule e.g.:
|
||||
# ../web/phobos/ddmd_mars.html : ddmd/mars.d $(STDDOC) ; ...
|
||||
# ../web/phobos/dmd_mars.html : dmd/mars.d $(STDDOC) ; ...
|
||||
$(foreach p,$(SRC_DOCUMENTABLES),$(eval \
|
||||
$(DOC_OUTPUT_DIR)/$(call D2HTML,$p) : $p $(STDDOC) $(HOST_DMD_PATH) ;\
|
||||
$(HOST_DMD_RUN) -of- $(MODEL_FLAG) -J$G -J../res -c -Dd$(DOCSRC) -Iddmd\
|
||||
$(HOST_DMD_RUN) -of- $(MODEL_FLAG) -J$G -J../res -c -Dd$(DOCSRC) -Idmd\
|
||||
$(DFLAGS) project.ddoc $(STDDOC) -Df$$@ $$<))
|
||||
|
||||
$(DOC_OUTPUT_DIR) :
|
||||
|
|
|
@ -412,156 +412,156 @@
|
|||
<Folder name="gen">
|
||||
<File tool="Custom" path="..\..\VERSION" customcmd="copy ..\..\VERSION $(OutDir)\VERSION" uptodateWithSameTime="true" outfile="$(OutDir)\VERSION" />
|
||||
</Folder>
|
||||
<Folder name="ddmd">
|
||||
<Folder name="dmd">
|
||||
<Folder name="backend">
|
||||
<File path="..\ddmd\backend\bcomplex.d" />
|
||||
<File path="..\ddmd\backend\cc.d" />
|
||||
<File path="..\ddmd\backend\cdef.d" />
|
||||
<File path="..\ddmd\backend\cgcv.d" />
|
||||
<File path="..\ddmd\backend\code.d" />
|
||||
<File path="..\ddmd\backend\code_x86.d" />
|
||||
<File path="..\ddmd\backend\cv4.d" />
|
||||
<File path="..\ddmd\backend\dt.d" />
|
||||
<File path="..\ddmd\backend\el.d" />
|
||||
<File path="..\ddmd\backend\exh.d" />
|
||||
<File path="..\ddmd\backend\global.d" />
|
||||
<File path="..\ddmd\backend\iasm.d" />
|
||||
<File path="..\ddmd\backend\md5.d" />
|
||||
<File path="..\ddmd\backend\obj.d" />
|
||||
<File path="..\ddmd\backend\oper.d" />
|
||||
<File path="..\ddmd\backend\outbuf.d" />
|
||||
<File path="..\ddmd\backend\rtlsym.d" />
|
||||
<File path="..\ddmd\backend\ty.d" />
|
||||
<File path="..\ddmd\backend\type.d" />
|
||||
<File path="..\ddmd\backend\xmm.d" />
|
||||
<File path="..\dmd\backend\bcomplex.d" />
|
||||
<File path="..\dmd\backend\cc.d" />
|
||||
<File path="..\dmd\backend\cdef.d" />
|
||||
<File path="..\dmd\backend\cgcv.d" />
|
||||
<File path="..\dmd\backend\code.d" />
|
||||
<File path="..\dmd\backend\code_x86.d" />
|
||||
<File path="..\dmd\backend\cv4.d" />
|
||||
<File path="..\dmd\backend\dt.d" />
|
||||
<File path="..\dmd\backend\el.d" />
|
||||
<File path="..\dmd\backend\exh.d" />
|
||||
<File path="..\dmd\backend\global.d" />
|
||||
<File path="..\dmd\backend\iasm.d" />
|
||||
<File path="..\dmd\backend\md5.d" />
|
||||
<File path="..\dmd\backend\obj.d" />
|
||||
<File path="..\dmd\backend\oper.d" />
|
||||
<File path="..\dmd\backend\outbuf.d" />
|
||||
<File path="..\dmd\backend\rtlsym.d" />
|
||||
<File path="..\dmd\backend\ty.d" />
|
||||
<File path="..\dmd\backend\type.d" />
|
||||
<File path="..\dmd\backend\xmm.d" />
|
||||
</Folder>
|
||||
<Folder name="root">
|
||||
<File path="..\ddmd\root\aav.d" />
|
||||
<File path="..\ddmd\root\array.d" />
|
||||
<File path="..\ddmd\root\ctfloat.d" />
|
||||
<File path="..\ddmd\root\file.d" />
|
||||
<File path="..\ddmd\root\filename.d" />
|
||||
<File path="..\ddmd\root\hash.d" />
|
||||
<File path="..\ddmd\root\man.d" />
|
||||
<File path="..\ddmd\root\outbuffer.d" />
|
||||
<File path="..\ddmd\root\port.d" />
|
||||
<File path="..\ddmd\root\response.d" />
|
||||
<File path="..\ddmd\root\rmem.d" />
|
||||
<File path="..\ddmd\root\rootobject.d" />
|
||||
<File path="..\ddmd\root\speller.d" />
|
||||
<File path="..\ddmd\root\stringtable.d" />
|
||||
<File path="..\dmd\root\aav.d" />
|
||||
<File path="..\dmd\root\array.d" />
|
||||
<File path="..\dmd\root\ctfloat.d" />
|
||||
<File path="..\dmd\root\file.d" />
|
||||
<File path="..\dmd\root\filename.d" />
|
||||
<File path="..\dmd\root\hash.d" />
|
||||
<File path="..\dmd\root\man.d" />
|
||||
<File path="..\dmd\root\outbuffer.d" />
|
||||
<File path="..\dmd\root\port.d" />
|
||||
<File path="..\dmd\root\response.d" />
|
||||
<File path="..\dmd\root\rmem.d" />
|
||||
<File path="..\dmd\root\rootobject.d" />
|
||||
<File path="..\dmd\root\speller.d" />
|
||||
<File path="..\dmd\root\stringtable.d" />
|
||||
</Folder>
|
||||
<Folder name="tk">
|
||||
<File path="..\ddmd\tk\dlist.d" />
|
||||
<File path="..\dmd\tk\dlist.d" />
|
||||
</Folder>
|
||||
<File path="..\ddmd\access.d" />
|
||||
<File path="..\ddmd\aggregate.d" />
|
||||
<File path="..\ddmd\aliasthis.d" />
|
||||
<File path="..\ddmd\apply.d" />
|
||||
<File path="..\ddmd\argtypes.d" />
|
||||
<File path="..\ddmd\arrayop.d" />
|
||||
<File path="..\ddmd\arraytypes.d" />
|
||||
<File path="..\ddmd\astcodegen.d" />
|
||||
<File path="..\ddmd\attrib.d" />
|
||||
<File path="..\ddmd\blockexit.d" />
|
||||
<File path="..\ddmd\boostlicense.txt" />
|
||||
<File path="..\ddmd\builtin.d" />
|
||||
<File path="..\ddmd\canthrow.d" />
|
||||
<File path="..\ddmd\clone.d" />
|
||||
<File path="..\ddmd\complex.d" />
|
||||
<File path="..\ddmd\cond.d" />
|
||||
<File path="..\ddmd\console.d" />
|
||||
<File path="..\ddmd\constfold.d" />
|
||||
<File path="..\ddmd\cppmangle.d" />
|
||||
<File path="..\ddmd\cppmanglewin.d" />
|
||||
<File path="..\ddmd\ctfeexpr.d" />
|
||||
<File path="..\ddmd\dcast.d" />
|
||||
<File path="..\ddmd\dclass.d" />
|
||||
<File path="..\ddmd\declaration.d" />
|
||||
<File path="..\ddmd\delegatize.d" />
|
||||
<File path="..\ddmd\denum.d" />
|
||||
<File path="..\ddmd\dimport.d" />
|
||||
<File path="..\ddmd\dinifile.d" />
|
||||
<File path="..\ddmd\dinterpret.d" />
|
||||
<File path="..\ddmd\dmacro.d" />
|
||||
<File path="..\ddmd\dmangle.d" />
|
||||
<File path="..\ddmd\dmodule.d" />
|
||||
<File path="..\ddmd\dmsc.d" />
|
||||
<File path="..\ddmd\doc.d" />
|
||||
<File path="..\ddmd\dscope.d" />
|
||||
<File path="..\ddmd\dstruct.d" />
|
||||
<File path="..\ddmd\dsymbol.d" />
|
||||
<File path="..\ddmd\dsymbolsem.d" />
|
||||
<File path="..\ddmd\dtemplate.d" />
|
||||
<File path="..\ddmd\dversion.d" />
|
||||
<File path="..\ddmd\e2ir.d" />
|
||||
<File path="..\ddmd\eh.d" />
|
||||
<File path="..\ddmd\entity.d" />
|
||||
<File path="..\ddmd\errors.d" />
|
||||
<File path="..\ddmd\escape.d" />
|
||||
<File path="..\ddmd\expression.d" />
|
||||
<File path="..\ddmd\expressionsem.d" />
|
||||
<File path="..\ddmd\func.d" />
|
||||
<File path="..\ddmd\globals.d" />
|
||||
<File path="..\ddmd\glue.d" />
|
||||
<File path="..\ddmd\gluelayer.d" />
|
||||
<File path="..\ddmd\hdrgen.d" />
|
||||
<File path="..\ddmd\iasm.d" />
|
||||
<File path="..\ddmd\id.d" />
|
||||
<File path="..\ddmd\identifier.d" />
|
||||
<File path="..\ddmd\impcnvtab.d" />
|
||||
<File path="..\ddmd\imphint.d" />
|
||||
<File path="..\ddmd\init.d" />
|
||||
<File path="..\ddmd\initsem.d" />
|
||||
<File path="..\ddmd\inline.d" />
|
||||
<File path="..\ddmd\inlinecost.d" />
|
||||
<File path="..\ddmd\intrange.d" />
|
||||
<File path="..\ddmd\irstate.d" />
|
||||
<File path="..\ddmd\json.d" />
|
||||
<File path="..\ddmd\lexer.d" />
|
||||
<File path="..\ddmd\lib.d" />
|
||||
<File path="..\ddmd\libmscoff.d" />
|
||||
<File path="..\ddmd\libomf.d" />
|
||||
<File path="..\ddmd\link.d" />
|
||||
<File path="..\ddmd\mars.d" />
|
||||
<File path="..\ddmd\mtype.d" />
|
||||
<File path="..\ddmd\nogc.d" />
|
||||
<File path="..\ddmd\nspace.d" />
|
||||
<File path="..\ddmd\objc.d" />
|
||||
<File path="..\ddmd\objc_glue_stubs.d" />
|
||||
<File path="..\ddmd\opover.d" />
|
||||
<File path="..\ddmd\optimize.d" />
|
||||
<File path="..\ddmd\osmodel.mak" />
|
||||
<File path="..\ddmd\parse.d" />
|
||||
<File path="..\ddmd\posix.mak" />
|
||||
<File path="..\ddmd\printast.d" />
|
||||
<File path="..\ddmd\s2ir.d" />
|
||||
<File path="..\ddmd\safe.d" />
|
||||
<File path="..\ddmd\sapply.d" />
|
||||
<File path="..\ddmd\scanmscoff.d" />
|
||||
<File path="..\ddmd\scanomf.d" />
|
||||
<File path="..\ddmd\semantic.d" />
|
||||
<File path="..\ddmd\sideeffect.d" />
|
||||
<File path="..\ddmd\statement.d" />
|
||||
<File path="..\ddmd\statementsem.d" />
|
||||
<File path="..\ddmd\statement_rewrite_walker.d" />
|
||||
<File path="..\ddmd\staticassert.d" />
|
||||
<File path="..\ddmd\staticcond.d" />
|
||||
<File path="..\ddmd\target.d" />
|
||||
<File path="..\ddmd\templateparamsem.d" />
|
||||
<File path="..\ddmd\tocsym.d" />
|
||||
<File path="..\ddmd\toctype.d" />
|
||||
<File path="..\ddmd\tocvdebug.d" />
|
||||
<File path="..\ddmd\todt.d" />
|
||||
<File path="..\ddmd\toir.d" />
|
||||
<File path="..\ddmd\tokens.d" />
|
||||
<File path="..\ddmd\toobj.d" />
|
||||
<File path="..\ddmd\traits.d" />
|
||||
<File path="..\ddmd\typinf.d" />
|
||||
<File path="..\ddmd\typesem.d" />
|
||||
<File path="..\ddmd\utf.d" />
|
||||
<File path="..\ddmd\utils.d" />
|
||||
<File path="..\ddmd\visitor.d" />
|
||||
<File path="..\dmd\access.d" />
|
||||
<File path="..\dmd\aggregate.d" />
|
||||
<File path="..\dmd\aliasthis.d" />
|
||||
<File path="..\dmd\apply.d" />
|
||||
<File path="..\dmd\argtypes.d" />
|
||||
<File path="..\dmd\arrayop.d" />
|
||||
<File path="..\dmd\arraytypes.d" />
|
||||
<File path="..\dmd\astcodegen.d" />
|
||||
<File path="..\dmd\attrib.d" />
|
||||
<File path="..\dmd\blockexit.d" />
|
||||
<File path="..\dmd\boostlicense.txt" />
|
||||
<File path="..\dmd\builtin.d" />
|
||||
<File path="..\dmd\canthrow.d" />
|
||||
<File path="..\dmd\clone.d" />
|
||||
<File path="..\dmd\complex.d" />
|
||||
<File path="..\dmd\cond.d" />
|
||||
<File path="..\dmd\console.d" />
|
||||
<File path="..\dmd\constfold.d" />
|
||||
<File path="..\dmd\cppmangle.d" />
|
||||
<File path="..\dmd\cppmanglewin.d" />
|
||||
<File path="..\dmd\ctfeexpr.d" />
|
||||
<File path="..\dmd\dcast.d" />
|
||||
<File path="..\dmd\dclass.d" />
|
||||
<File path="..\dmd\declaration.d" />
|
||||
<File path="..\dmd\delegatize.d" />
|
||||
<File path="..\dmd\denum.d" />
|
||||
<File path="..\dmd\dimport.d" />
|
||||
<File path="..\dmd\dinifile.d" />
|
||||
<File path="..\dmd\dinterpret.d" />
|
||||
<File path="..\dmd\dmacro.d" />
|
||||
<File path="..\dmd\dmangle.d" />
|
||||
<File path="..\dmd\dmodule.d" />
|
||||
<File path="..\dmd\dmsc.d" />
|
||||
<File path="..\dmd\doc.d" />
|
||||
<File path="..\dmd\dscope.d" />
|
||||
<File path="..\dmd\dstruct.d" />
|
||||
<File path="..\dmd\dsymbol.d" />
|
||||
<File path="..\dmd\dsymbolsem.d" />
|
||||
<File path="..\dmd\dtemplate.d" />
|
||||
<File path="..\dmd\dversion.d" />
|
||||
<File path="..\dmd\e2ir.d" />
|
||||
<File path="..\dmd\eh.d" />
|
||||
<File path="..\dmd\entity.d" />
|
||||
<File path="..\dmd\errors.d" />
|
||||
<File path="..\dmd\escape.d" />
|
||||
<File path="..\dmd\expression.d" />
|
||||
<File path="..\dmd\expressionsem.d" />
|
||||
<File path="..\dmd\func.d" />
|
||||
<File path="..\dmd\globals.d" />
|
||||
<File path="..\dmd\glue.d" />
|
||||
<File path="..\dmd\gluelayer.d" />
|
||||
<File path="..\dmd\hdrgen.d" />
|
||||
<File path="..\dmd\iasm.d" />
|
||||
<File path="..\dmd\id.d" />
|
||||
<File path="..\dmd\identifier.d" />
|
||||
<File path="..\dmd\impcnvtab.d" />
|
||||
<File path="..\dmd\imphint.d" />
|
||||
<File path="..\dmd\init.d" />
|
||||
<File path="..\dmd\initsem.d" />
|
||||
<File path="..\dmd\inline.d" />
|
||||
<File path="..\dmd\inlinecost.d" />
|
||||
<File path="..\dmd\intrange.d" />
|
||||
<File path="..\dmd\irstate.d" />
|
||||
<File path="..\dmd\json.d" />
|
||||
<File path="..\dmd\lexer.d" />
|
||||
<File path="..\dmd\lib.d" />
|
||||
<File path="..\dmd\libmscoff.d" />
|
||||
<File path="..\dmd\libomf.d" />
|
||||
<File path="..\dmd\link.d" />
|
||||
<File path="..\dmd\mars.d" />
|
||||
<File path="..\dmd\mtype.d" />
|
||||
<File path="..\dmd\nogc.d" />
|
||||
<File path="..\dmd\nspace.d" />
|
||||
<File path="..\dmd\objc.d" />
|
||||
<File path="..\dmd\objc_glue_stubs.d" />
|
||||
<File path="..\dmd\opover.d" />
|
||||
<File path="..\dmd\optimize.d" />
|
||||
<File path="..\dmd\osmodel.mak" />
|
||||
<File path="..\dmd\parse.d" />
|
||||
<File path="..\dmd\posix.mak" />
|
||||
<File path="..\dmd\printast.d" />
|
||||
<File path="..\dmd\s2ir.d" />
|
||||
<File path="..\dmd\safe.d" />
|
||||
<File path="..\dmd\sapply.d" />
|
||||
<File path="..\dmd\scanmscoff.d" />
|
||||
<File path="..\dmd\scanomf.d" />
|
||||
<File path="..\dmd\semantic.d" />
|
||||
<File path="..\dmd\sideeffect.d" />
|
||||
<File path="..\dmd\statement.d" />
|
||||
<File path="..\dmd\statementsem.d" />
|
||||
<File path="..\dmd\statement_rewrite_walker.d" />
|
||||
<File path="..\dmd\staticassert.d" />
|
||||
<File path="..\dmd\staticcond.d" />
|
||||
<File path="..\dmd\target.d" />
|
||||
<File path="..\dmd\templateparamsem.d" />
|
||||
<File path="..\dmd\tocsym.d" />
|
||||
<File path="..\dmd\toctype.d" />
|
||||
<File path="..\dmd\tocvdebug.d" />
|
||||
<File path="..\dmd\todt.d" />
|
||||
<File path="..\dmd\toir.d" />
|
||||
<File path="..\dmd\tokens.d" />
|
||||
<File path="..\dmd\toobj.d" />
|
||||
<File path="..\dmd\traits.d" />
|
||||
<File path="..\dmd\typinf.d" />
|
||||
<File path="..\dmd\typesem.d" />
|
||||
<File path="..\dmd\utf.d" />
|
||||
<File path="..\dmd\utils.d" />
|
||||
<File path="..\dmd\visitor.d" />
|
||||
<File path="..\win32.mak" />
|
||||
</Folder>
|
||||
</Folder>
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>$(IntDir)generated\ddmd;$(IntDir)generated;..\ddmd\root;..\ddmd\tk;..\ddmd\backend;.;.;..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>$(IntDir)generated\dmd;$(IntDir)generated;..\dmd\root;..\dmd\tk;..\dmd\backend;.;.;..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)'=='Debug'">DEBUG;_DEBUG;TARGET_WINDOS%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions Condition="'$(Configuration)'=='Release'">TARGET_WINDOS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>
|
||||
|
@ -85,160 +85,160 @@
|
|||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\ddmd\backend\backconfig.c" />
|
||||
<ClCompile Include="..\ddmd\backend\compress.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cv8.c" />
|
||||
<ClCompile Include="..\ddmd\backend\gsroa.c" />
|
||||
<ClCompile Include="..\ddmd\backend\pdata.c" />
|
||||
<ClCompile Include="..\ddmd\backend\ph2.c" />
|
||||
<ClCompile Include="..\ddmd\backend\util2.c" />
|
||||
<ClCompile Include="..\ddmd\backend\varstats.c" />
|
||||
<ClCompile Include="..\ddmd\backend\tk.c" />
|
||||
<ClCompile Include="..\ddmd\backend\aa.c" />
|
||||
<ClCompile Include="..\ddmd\backend\bcomplex.c" />
|
||||
<ClCompile Include="..\ddmd\backend\blockopt.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cg.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cg87.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgcod.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgcs.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgcv.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgelem.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgen.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgobj.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgreg.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgsched.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cgxmm.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cod1.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cod2.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cod3.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cod4.c" />
|
||||
<ClCompile Include="..\ddmd\backend\cod5.c" />
|
||||
<ClCompile Include="..\ddmd\backend\code.c" />
|
||||
<ClCompile Include="..\ddmd\backend\debug.c" />
|
||||
<ClCompile Include="..\ddmd\backend\divcoeff.c" />
|
||||
<ClCompile Include="..\ddmd\backend\dt.c" />
|
||||
<ClCompile Include="..\ddmd\backend\dwarf.c" />
|
||||
<ClCompile Include="..\ddmd\backend\ee.c" />
|
||||
<ClCompile Include="..\ddmd\backend\el.c" />
|
||||
<ClCompile Include="..\ddmd\backend\elfobj.c" />
|
||||
<ClCompile Include="..\ddmd\backend\evalu8.c" />
|
||||
<ClCompile Include="..\ddmd\backend\gdag.c" />
|
||||
<ClCompile Include="..\ddmd\backend\gflow.c" />
|
||||
<ClCompile Include="..\ddmd\backend\glocal.c" />
|
||||
<ClCompile Include="..\ddmd\backend\gloop.c" />
|
||||
<ClCompile Include="..\ddmd\backend\go.c" />
|
||||
<ClCompile Include="..\ddmd\backend\gother.c" />
|
||||
<ClCompile Include="..\ddmd\backend\machobj.c" />
|
||||
<ClCompile Include="..\ddmd\backend\md5.c" />
|
||||
<ClCompile Include="..\ddmd\backend\mscoffobj.c" />
|
||||
<ClCompile Include="..\ddmd\backend\newman.c" />
|
||||
<ClCompile Include="..\ddmd\backend\nteh.c" />
|
||||
<ClCompile Include="..\ddmd\backend\os.c" />
|
||||
<ClCompile Include="..\ddmd\backend\out.c" />
|
||||
<ClCompile Include="..\ddmd\backend\outbuf.c" />
|
||||
<ClCompile Include="..\ddmd\backend\ptrntab.c" />
|
||||
<ClCompile Include="..\ddmd\backend\rtlsym.c" />
|
||||
<ClCompile Include="..\ddmd\backend\strtold.c" />
|
||||
<ClCompile Include="..\ddmd\backend\symbol.c" />
|
||||
<ClCompile Include="..\ddmd\backend\ti_achar.c" />
|
||||
<ClCompile Include="..\ddmd\backend\ti_pvoid.c" />
|
||||
<ClCompile Include="..\ddmd\backend\type.c" />
|
||||
<ClCompile Include="..\ddmd\backend\var.c" />
|
||||
<ClCompile Include="..\ddmd\tk\filespec.c">
|
||||
<ClCompile Include="..\dmd\backend\backconfig.c" />
|
||||
<ClCompile Include="..\dmd\backend\compress.c" />
|
||||
<ClCompile Include="..\dmd\backend\cv8.c" />
|
||||
<ClCompile Include="..\dmd\backend\gsroa.c" />
|
||||
<ClCompile Include="..\dmd\backend\pdata.c" />
|
||||
<ClCompile Include="..\dmd\backend\ph2.c" />
|
||||
<ClCompile Include="..\dmd\backend\util2.c" />
|
||||
<ClCompile Include="..\dmd\backend\varstats.c" />
|
||||
<ClCompile Include="..\dmd\backend\tk.c" />
|
||||
<ClCompile Include="..\dmd\backend\aa.c" />
|
||||
<ClCompile Include="..\dmd\backend\bcomplex.c" />
|
||||
<ClCompile Include="..\dmd\backend\blockopt.c" />
|
||||
<ClCompile Include="..\dmd\backend\cg.c" />
|
||||
<ClCompile Include="..\dmd\backend\cg87.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgcod.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgcs.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgcv.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgelem.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgen.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgobj.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgreg.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgsched.c" />
|
||||
<ClCompile Include="..\dmd\backend\cgxmm.c" />
|
||||
<ClCompile Include="..\dmd\backend\cod1.c" />
|
||||
<ClCompile Include="..\dmd\backend\cod2.c" />
|
||||
<ClCompile Include="..\dmd\backend\cod3.c" />
|
||||
<ClCompile Include="..\dmd\backend\cod4.c" />
|
||||
<ClCompile Include="..\dmd\backend\cod5.c" />
|
||||
<ClCompile Include="..\dmd\backend\code.c" />
|
||||
<ClCompile Include="..\dmd\backend\debug.c" />
|
||||
<ClCompile Include="..\dmd\backend\divcoeff.c" />
|
||||
<ClCompile Include="..\dmd\backend\dt.c" />
|
||||
<ClCompile Include="..\dmd\backend\dwarf.c" />
|
||||
<ClCompile Include="..\dmd\backend\ee.c" />
|
||||
<ClCompile Include="..\dmd\backend\el.c" />
|
||||
<ClCompile Include="..\dmd\backend\elfobj.c" />
|
||||
<ClCompile Include="..\dmd\backend\evalu8.c" />
|
||||
<ClCompile Include="..\dmd\backend\gdag.c" />
|
||||
<ClCompile Include="..\dmd\backend\gflow.c" />
|
||||
<ClCompile Include="..\dmd\backend\glocal.c" />
|
||||
<ClCompile Include="..\dmd\backend\gloop.c" />
|
||||
<ClCompile Include="..\dmd\backend\go.c" />
|
||||
<ClCompile Include="..\dmd\backend\gother.c" />
|
||||
<ClCompile Include="..\dmd\backend\machobj.c" />
|
||||
<ClCompile Include="..\dmd\backend\md5.c" />
|
||||
<ClCompile Include="..\dmd\backend\mscoffobj.c" />
|
||||
<ClCompile Include="..\dmd\backend\newman.c" />
|
||||
<ClCompile Include="..\dmd\backend\nteh.c" />
|
||||
<ClCompile Include="..\dmd\backend\os.c" />
|
||||
<ClCompile Include="..\dmd\backend\out.c" />
|
||||
<ClCompile Include="..\dmd\backend\outbuf.c" />
|
||||
<ClCompile Include="..\dmd\backend\ptrntab.c" />
|
||||
<ClCompile Include="..\dmd\backend\rtlsym.c" />
|
||||
<ClCompile Include="..\dmd\backend\strtold.c" />
|
||||
<ClCompile Include="..\dmd\backend\symbol.c" />
|
||||
<ClCompile Include="..\dmd\backend\ti_achar.c" />
|
||||
<ClCompile Include="..\dmd\backend\ti_pvoid.c" />
|
||||
<ClCompile Include="..\dmd\backend\type.c" />
|
||||
<ClCompile Include="..\dmd\backend\var.c" />
|
||||
<ClCompile Include="..\dmd\tk\filespec.c">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\tk\list.c">
|
||||
<ClCompile Include="..\dmd\tk\list.c">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\tk\mem.c">
|
||||
<ClCompile Include="..\dmd\tk\mem.c">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\tk\vec.c">
|
||||
<ClCompile Include="..\dmd\tk\vec.c">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\root\longdouble.c" />
|
||||
<ClCompile Include="..\ddmd\root\newdelete.c" />
|
||||
<CustomBuild Include="..\ddmd\backend\optabgen.c">
|
||||
<ClCompile Include="..\dmd\root\longdouble.c" />
|
||||
<ClCompile Include="..\dmd\root\newdelete.c" />
|
||||
<CustomBuild Include="..\dmd\backend\optabgen.c">
|
||||
<Message>Building and running $(IntDir)%(Filename).exe</Message>
|
||||
<Command>cl /TP /I..\ddmd\tk /I..\ddmd\root /I. /I.. /FIwarnings.h /Fo"$(IntDir)%(Filename).obj" /Fe"$(IntDir)generated\%(Filename).exe" "%(FullPath)"
|
||||
<Command>cl /TP /I..\dmd\tk /I..\dmd\root /I. /I.. /FIwarnings.h /Fo"$(IntDir)%(Filename).obj" /Fe"$(IntDir)generated\%(Filename).exe" "%(FullPath)"
|
||||
if errorlevel 1 exit /B %ERRORLEVEL%
|
||||
pushd $(IntDir)generated
|
||||
"%(Filename).exe"
|
||||
if errorlevel 1 exit /B %ERRORLEVEL%
|
||||
popd</Command>
|
||||
<Outputs>$(IntDir)generated\optab.c;$(IntDir)generated\debtab.c;$(IntDir)generated\cdxxx.c;$(IntDir)generated\elxxx.c;$(IntDir)generated\tytab.c;$(IntDir)generated\\fltables.c;%(Outputs)</Outputs>
|
||||
<AdditionalInputs>..\ddmd\backend\cc.h;..\ddmd\backend\oper.h;%(AdditionalInputs)</AdditionalInputs>
|
||||
<AdditionalInputs>..\dmd\backend\cc.h;..\dmd\backend\oper.h;%(AdditionalInputs)</AdditionalInputs>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\ddmd\aggregate.h" />
|
||||
<ClInclude Include="..\ddmd\aliasthis.h" />
|
||||
<ClInclude Include="..\ddmd\arraytypes.h" />
|
||||
<ClInclude Include="..\ddmd\attrib.h" />
|
||||
<ClInclude Include="..\ddmd\backend\varstats.h" />
|
||||
<ClInclude Include="..\ddmd\complex_t.h" />
|
||||
<ClInclude Include="..\ddmd\cond.h" />
|
||||
<ClInclude Include="..\ddmd\declaration.h" />
|
||||
<ClInclude Include="..\ddmd\dsymbol.h" />
|
||||
<ClInclude Include="..\ddmd\enum.h" />
|
||||
<ClInclude Include="..\ddmd\errors.h" />
|
||||
<ClInclude Include="..\ddmd\expression.h" />
|
||||
<ClInclude Include="..\ddmd\globals.h" />
|
||||
<ClInclude Include="..\ddmd\hdrgen.h" />
|
||||
<ClInclude Include="..\ddmd\identifier.h" />
|
||||
<ClInclude Include="..\ddmd\import.h" />
|
||||
<ClInclude Include="..\ddmd\init.h" />
|
||||
<ClInclude Include="..\ddmd\intrange.h" />
|
||||
<ClInclude Include="..\ddmd\json.h" />
|
||||
<ClInclude Include="..\ddmd\mars.h" />
|
||||
<ClInclude Include="..\ddmd\module.h" />
|
||||
<ClInclude Include="..\ddmd\mtype.h" />
|
||||
<ClInclude Include="..\ddmd\nspace.h" />
|
||||
<ClInclude Include="..\ddmd\objc.h" />
|
||||
<ClInclude Include="..\ddmd\scope.h" />
|
||||
<ClInclude Include="..\ddmd\statement.h" />
|
||||
<ClInclude Include="..\ddmd\staticassert.h" />
|
||||
<ClInclude Include="..\ddmd\target.h" />
|
||||
<ClInclude Include="..\ddmd\template.h" />
|
||||
<ClInclude Include="..\ddmd\tokens.h" />
|
||||
<ClInclude Include="..\ddmd\version.h" />
|
||||
<ClInclude Include="..\ddmd\backend\aa.h" />
|
||||
<ClInclude Include="..\ddmd\backend\bcomplex.h" />
|
||||
<ClInclude Include="..\ddmd\backend\cc.h" />
|
||||
<ClInclude Include="..\ddmd\backend\cdef.h" />
|
||||
<ClInclude Include="..\ddmd\backend\cgcv.h" />
|
||||
<ClInclude Include="..\ddmd\backend\code.h" />
|
||||
<ClInclude Include="..\ddmd\backend\cv4.h" />
|
||||
<ClInclude Include="..\ddmd\backend\dt.h" />
|
||||
<ClInclude Include="..\ddmd\backend\dwarf.h" />
|
||||
<ClInclude Include="..\ddmd\backend\dwarf2.h" />
|
||||
<ClInclude Include="..\ddmd\backend\el.h" />
|
||||
<ClInclude Include="..\ddmd\backend\exh.h" />
|
||||
<ClInclude Include="..\ddmd\backend\global.h" />
|
||||
<ClInclude Include="..\ddmd\backend\go.h" />
|
||||
<ClInclude Include="..\ddmd\backend\iasm.h" />
|
||||
<ClInclude Include="..\ddmd\backend\mach.h" />
|
||||
<ClInclude Include="..\ddmd\backend\md5.h" />
|
||||
<ClInclude Include="..\ddmd\backend\melf.h" />
|
||||
<ClInclude Include="..\ddmd\backend\mscoff.h" />
|
||||
<ClInclude Include="..\ddmd\backend\oper.h" />
|
||||
<ClInclude Include="..\ddmd\backend\outbuf.h" />
|
||||
<ClInclude Include="..\ddmd\backend\rtlsym.h" />
|
||||
<ClInclude Include="..\ddmd\backend\tassert.h" />
|
||||
<ClInclude Include="..\ddmd\backend\tinfo.h" />
|
||||
<ClInclude Include="..\ddmd\backend\token.h" />
|
||||
<ClInclude Include="..\ddmd\backend\ty.h" />
|
||||
<ClInclude Include="..\ddmd\backend\type.h" />
|
||||
<ClInclude Include="..\ddmd\tk\filespec.h" />
|
||||
<ClInclude Include="..\ddmd\tk\list.h" />
|
||||
<ClInclude Include="..\ddmd\tk\mem.h" />
|
||||
<ClInclude Include="..\ddmd\tk\vec.h" />
|
||||
<ClInclude Include="..\ddmd\root\ctfloat.h" />
|
||||
<ClInclude Include="..\ddmd\root\longdouble.h" />
|
||||
<ClInclude Include="..\ddmd\root\port.h" />
|
||||
<ClInclude Include="..\ddmd\root\rmem.h" />
|
||||
<ClInclude Include="..\ddmd\root\root.h" />
|
||||
<ClInclude Include="..\ddmd\root\stringtable.h" />
|
||||
<ClInclude Include="..\dmd\aggregate.h" />
|
||||
<ClInclude Include="..\dmd\aliasthis.h" />
|
||||
<ClInclude Include="..\dmd\arraytypes.h" />
|
||||
<ClInclude Include="..\dmd\attrib.h" />
|
||||
<ClInclude Include="..\dmd\backend\varstats.h" />
|
||||
<ClInclude Include="..\dmd\complex_t.h" />
|
||||
<ClInclude Include="..\dmd\cond.h" />
|
||||
<ClInclude Include="..\dmd\declaration.h" />
|
||||
<ClInclude Include="..\dmd\dsymbol.h" />
|
||||
<ClInclude Include="..\dmd\enum.h" />
|
||||
<ClInclude Include="..\dmd\errors.h" />
|
||||
<ClInclude Include="..\dmd\expression.h" />
|
||||
<ClInclude Include="..\dmd\globals.h" />
|
||||
<ClInclude Include="..\dmd\hdrgen.h" />
|
||||
<ClInclude Include="..\dmd\identifier.h" />
|
||||
<ClInclude Include="..\dmd\import.h" />
|
||||
<ClInclude Include="..\dmd\init.h" />
|
||||
<ClInclude Include="..\dmd\intrange.h" />
|
||||
<ClInclude Include="..\dmd\json.h" />
|
||||
<ClInclude Include="..\dmd\mars.h" />
|
||||
<ClInclude Include="..\dmd\module.h" />
|
||||
<ClInclude Include="..\dmd\mtype.h" />
|
||||
<ClInclude Include="..\dmd\nspace.h" />
|
||||
<ClInclude Include="..\dmd\objc.h" />
|
||||
<ClInclude Include="..\dmd\scope.h" />
|
||||
<ClInclude Include="..\dmd\statement.h" />
|
||||
<ClInclude Include="..\dmd\staticassert.h" />
|
||||
<ClInclude Include="..\dmd\target.h" />
|
||||
<ClInclude Include="..\dmd\template.h" />
|
||||
<ClInclude Include="..\dmd\tokens.h" />
|
||||
<ClInclude Include="..\dmd\version.h" />
|
||||
<ClInclude Include="..\dmd\backend\aa.h" />
|
||||
<ClInclude Include="..\dmd\backend\bcomplex.h" />
|
||||
<ClInclude Include="..\dmd\backend\cc.h" />
|
||||
<ClInclude Include="..\dmd\backend\cdef.h" />
|
||||
<ClInclude Include="..\dmd\backend\cgcv.h" />
|
||||
<ClInclude Include="..\dmd\backend\code.h" />
|
||||
<ClInclude Include="..\dmd\backend\cv4.h" />
|
||||
<ClInclude Include="..\dmd\backend\dt.h" />
|
||||
<ClInclude Include="..\dmd\backend\dwarf.h" />
|
||||
<ClInclude Include="..\dmd\backend\dwarf2.h" />
|
||||
<ClInclude Include="..\dmd\backend\el.h" />
|
||||
<ClInclude Include="..\dmd\backend\exh.h" />
|
||||
<ClInclude Include="..\dmd\backend\global.h" />
|
||||
<ClInclude Include="..\dmd\backend\go.h" />
|
||||
<ClInclude Include="..\dmd\backend\iasm.h" />
|
||||
<ClInclude Include="..\dmd\backend\mach.h" />
|
||||
<ClInclude Include="..\dmd\backend\md5.h" />
|
||||
<ClInclude Include="..\dmd\backend\melf.h" />
|
||||
<ClInclude Include="..\dmd\backend\mscoff.h" />
|
||||
<ClInclude Include="..\dmd\backend\oper.h" />
|
||||
<ClInclude Include="..\dmd\backend\outbuf.h" />
|
||||
<ClInclude Include="..\dmd\backend\rtlsym.h" />
|
||||
<ClInclude Include="..\dmd\backend\tassert.h" />
|
||||
<ClInclude Include="..\dmd\backend\tinfo.h" />
|
||||
<ClInclude Include="..\dmd\backend\token.h" />
|
||||
<ClInclude Include="..\dmd\backend\ty.h" />
|
||||
<ClInclude Include="..\dmd\backend\type.h" />
|
||||
<ClInclude Include="..\dmd\tk\filespec.h" />
|
||||
<ClInclude Include="..\dmd\tk\list.h" />
|
||||
<ClInclude Include="..\dmd\tk\mem.h" />
|
||||
<ClInclude Include="..\dmd\tk\vec.h" />
|
||||
<ClInclude Include="..\dmd\root\ctfloat.h" />
|
||||
<ClInclude Include="..\dmd\root\longdouble.h" />
|
||||
<ClInclude Include="..\dmd\root\port.h" />
|
||||
<ClInclude Include="..\dmd\root\rmem.h" />
|
||||
<ClInclude Include="..\dmd\root\root.h" />
|
||||
<ClInclude Include="..\dmd\root\stringtable.h" />
|
||||
<ClInclude Include="..\vcbuild\alloca.h" />
|
||||
<ClInclude Include="..\vcbuild\fenv.h" />
|
||||
<ClInclude Include="..\vcbuild\stdint.h" />
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="ddmd">
|
||||
<Filter Include="dmd">
|
||||
<UniqueIdentifier>{6b846289-f779-413a-b14c-51ac8055587b}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="ddmd\backend">
|
||||
<Filter Include="dmd\backend">
|
||||
<UniqueIdentifier>{853090e1-9436-40d8-b439-b8dbbc2c7fa1}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="ddmd\tk">
|
||||
<Filter Include="dmd\tk">
|
||||
<UniqueIdentifier>{2db94531-cc9e-4df8-bd77-c22e38022b15}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="ddmd\root">
|
||||
<Filter Include="dmd\root">
|
||||
<UniqueIdentifier>{f109049a-11c8-4419-bdda-9d44c65b2900}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="ddmd\gen">
|
||||
<Filter Include="dmd\gen">
|
||||
<UniqueIdentifier>{8f21dd4e-1670-48be-9a72-1dccf0c17166}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="vcbuild">
|
||||
|
@ -21,391 +21,391 @@
|
|||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\ddmd\backend\tk.c">
|
||||
<Filter>ddmd</Filter>
|
||||
<ClCompile Include="..\dmd\backend\tk.c">
|
||||
<Filter>dmd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\aa.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\aa.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\bcomplex.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\bcomplex.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\blockopt.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\blockopt.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cg.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cg.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cg87.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cg87.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgcod.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgcod.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgcs.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgcs.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgcv.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgcv.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgelem.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgelem.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgen.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgen.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgobj.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgobj.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgreg.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgreg.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgsched.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgsched.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cgxmm.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cgxmm.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cod1.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cod1.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cod2.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cod2.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cod3.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cod3.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cod4.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cod4.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cod5.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cod5.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\code.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\code.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\debug.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\debug.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\divcoeff.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\divcoeff.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\dt.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\dt.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\dwarf.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\dwarf.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\ee.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\ee.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\el.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\el.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\elfobj.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\elfobj.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\evalu8.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\evalu8.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\gdag.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\gdag.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\gflow.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\gflow.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\glocal.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\glocal.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\gloop.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\gloop.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\go.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\go.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\gother.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\gother.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\machobj.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\machobj.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\md5.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\md5.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\mscoffobj.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\mscoffobj.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\newman.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\newman.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\nteh.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\nteh.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\os.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\os.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\out.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\out.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\outbuf.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\outbuf.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\ptrntab.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\ptrntab.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\rtlsym.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\rtlsym.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\strtold.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\strtold.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\symbol.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\symbol.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\ti_achar.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\ti_achar.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\ti_pvoid.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\ti_pvoid.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\type.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\type.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\var.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\var.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\tk\filespec.c">
|
||||
<Filter>ddmd\tk</Filter>
|
||||
<ClCompile Include="..\dmd\tk\filespec.c">
|
||||
<Filter>dmd\tk</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\tk\list.c">
|
||||
<Filter>ddmd\tk</Filter>
|
||||
<ClCompile Include="..\dmd\tk\list.c">
|
||||
<Filter>dmd\tk</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\tk\mem.c">
|
||||
<Filter>ddmd\tk</Filter>
|
||||
<ClCompile Include="..\dmd\tk\mem.c">
|
||||
<Filter>dmd\tk</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\tk\vec.c">
|
||||
<Filter>ddmd\tk</Filter>
|
||||
<ClCompile Include="..\dmd\tk\vec.c">
|
||||
<Filter>dmd\tk</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\root\longdouble.c">
|
||||
<Filter>ddmd\root</Filter>
|
||||
<ClCompile Include="..\dmd\root\longdouble.c">
|
||||
<Filter>dmd\root</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\root\newdelete.c">
|
||||
<Filter>ddmd\root</Filter>
|
||||
<ClCompile Include="..\dmd\root\newdelete.c">
|
||||
<Filter>dmd\root</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\backconfig.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\backconfig.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\ph2.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\ph2.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\util2.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\util2.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\cv8.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\cv8.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\pdata.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\pdata.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\varstats.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\varstats.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\compress.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\compress.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ddmd\backend\gsroa.c">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClCompile Include="..\dmd\backend\gsroa.c">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\ddmd\aggregate.h">
|
||||
<ClInclude Include="..\dmd\aggregate.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\aliasthis.h">
|
||||
<ClInclude Include="..\dmd\aliasthis.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\arraytypes.h">
|
||||
<ClInclude Include="..\dmd\arraytypes.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\attrib.h">
|
||||
<ClInclude Include="..\dmd\attrib.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\complex_t.h">
|
||||
<ClInclude Include="..\dmd\complex_t.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\cond.h">
|
||||
<ClInclude Include="..\dmd\cond.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\declaration.h">
|
||||
<ClInclude Include="..\dmd\declaration.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\dsymbol.h">
|
||||
<ClInclude Include="..\dmd\dsymbol.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\enum.h">
|
||||
<ClInclude Include="..\dmd\enum.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\errors.h">
|
||||
<ClInclude Include="..\dmd\errors.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\expression.h">
|
||||
<ClInclude Include="..\dmd\expression.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\hdrgen.h">
|
||||
<ClInclude Include="..\dmd\hdrgen.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\identifier.h">
|
||||
<ClInclude Include="..\dmd\identifier.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\import.h">
|
||||
<ClInclude Include="..\dmd\import.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\init.h">
|
||||
<ClInclude Include="..\dmd\init.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\intrange.h">
|
||||
<ClInclude Include="..\dmd\intrange.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\json.h">
|
||||
<ClInclude Include="..\dmd\json.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\mars.h">
|
||||
<ClInclude Include="..\dmd\mars.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\module.h">
|
||||
<ClInclude Include="..\dmd\module.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\mtype.h">
|
||||
<ClInclude Include="..\dmd\mtype.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\scope.h">
|
||||
<ClInclude Include="..\dmd\scope.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\statement.h">
|
||||
<ClInclude Include="..\dmd\statement.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\staticassert.h">
|
||||
<ClInclude Include="..\dmd\staticassert.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\template.h">
|
||||
<ClInclude Include="..\dmd\template.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\version.h">
|
||||
<ClInclude Include="..\dmd\version.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\aa.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\aa.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\bcomplex.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\bcomplex.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\cc.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\cc.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\cdef.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\cdef.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\cgcv.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\cgcv.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\code.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\code.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\cv4.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\cv4.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\dt.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\dt.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\dwarf.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\dwarf.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\dwarf2.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\dwarf2.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\el.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\el.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\exh.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\exh.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\global.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\global.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\go.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\go.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\iasm.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\iasm.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\mach.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\mach.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\md5.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\md5.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\melf.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\melf.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\mscoff.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\mscoff.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\oper.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\oper.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\outbuf.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\outbuf.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\rtlsym.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\rtlsym.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\tassert.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\tassert.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\tinfo.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\tinfo.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\token.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\token.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\ty.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\ty.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\type.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\type.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\backend\varstats.h">
|
||||
<Filter>ddmd\backend</Filter>
|
||||
<ClInclude Include="..\dmd\backend\varstats.h">
|
||||
<Filter>dmd\backend</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\tk\filespec.h">
|
||||
<Filter>ddmd\tk</Filter>
|
||||
<ClInclude Include="..\dmd\tk\filespec.h">
|
||||
<Filter>dmd\tk</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\tk\list.h">
|
||||
<Filter>ddmd\tk</Filter>
|
||||
<ClInclude Include="..\dmd\tk\list.h">
|
||||
<Filter>dmd\tk</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\tk\mem.h">
|
||||
<Filter>ddmd\tk</Filter>
|
||||
<ClInclude Include="..\dmd\tk\mem.h">
|
||||
<Filter>dmd\tk</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\tk\vec.h">
|
||||
<Filter>ddmd\tk</Filter>
|
||||
<ClInclude Include="..\dmd\tk\vec.h">
|
||||
<Filter>dmd\tk</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\root\ctfloat.h">
|
||||
<Filter>ddmd\root</Filter>
|
||||
<ClInclude Include="..\dmd\root\ctfloat.h">
|
||||
<Filter>dmd\root</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\root\longdouble.h">
|
||||
<Filter>ddmd\root</Filter>
|
||||
<ClInclude Include="..\dmd\root\longdouble.h">
|
||||
<Filter>dmd\root</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\root\port.h">
|
||||
<Filter>ddmd\root</Filter>
|
||||
<ClInclude Include="..\dmd\root\port.h">
|
||||
<Filter>dmd\root</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\root\rmem.h">
|
||||
<Filter>ddmd\root</Filter>
|
||||
<ClInclude Include="..\dmd\root\rmem.h">
|
||||
<Filter>dmd\root</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\root\root.h">
|
||||
<Filter>ddmd\root</Filter>
|
||||
<ClInclude Include="..\dmd\root\root.h">
|
||||
<Filter>dmd\root</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\root\stringtable.h">
|
||||
<Filter>ddmd\root</Filter>
|
||||
<ClInclude Include="..\dmd\root\stringtable.h">
|
||||
<Filter>dmd\root</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\vcbuild\alloca.h">
|
||||
<Filter>vcbuild</Filter>
|
||||
|
@ -419,31 +419,31 @@
|
|||
<ClInclude Include="..\vcbuild\warnings.h">
|
||||
<Filter>vcbuild</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\target.h">
|
||||
<ClInclude Include="..\dmd\target.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\nspace.h">
|
||||
<ClInclude Include="..\dmd\nspace.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\objc.h">
|
||||
<ClInclude Include="..\dmd\objc.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\tokens.h">
|
||||
<ClInclude Include="..\dmd\tokens.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\ddmd\globals.h">
|
||||
<ClInclude Include="..\dmd\globals.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\ddmd\backend\optabgen.c">
|
||||
<Filter>ddmd\gen</Filter>
|
||||
<CustomBuild Include="..\dmd\backend\optabgen.c">
|
||||
<Filter>dmd\gen</Filter>
|
||||
</CustomBuild>
|
||||
<CustomBuild Include="..\vcbuild\ldfpu.asm">
|
||||
<Filter>vcbuild</Filter>
|
||||
</CustomBuild>
|
||||
<CustomBuild Include="..\ddmd\idgen.d">
|
||||
<Filter>ddmd\gen</Filter>
|
||||
<CustomBuild Include="..\dmd\idgen.d">
|
||||
<Filter>dmd\gen</Filter>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -62,7 +62,7 @@ OS=windows
|
|||
##### Directories
|
||||
|
||||
# DMD source directories
|
||||
D=ddmd
|
||||
D=dmd
|
||||
C=$D\backend
|
||||
TK=$D\tk
|
||||
ROOT=$D\root
|
||||
|
|
|
@ -15,7 +15,7 @@ OS=windows
|
|||
.d.exe:
|
||||
$(HOST_DC) -of$@ $<
|
||||
|
||||
D=ddmd
|
||||
D=dmd
|
||||
GEN = ..\generated
|
||||
G = $(GEN)\$(OS)\$(BUILD)\$(MODEL)
|
||||
OBJ_MSVC=$G/strtold.obj $G\longdouble.obj $G\ldfpu.obj
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue