fna-workbench

fna-workbench Commit Details


Date:2016-02-01 22:56:27 (9 years 7 months ago)
Author:Ethan Lee
Branch:master
Commit:dc0852c18884b7affe048483e730b711205074ff
Parents: f358961a1c52c0c985c6576c122e2661114de826
Message:Makefile: Include EmbeddedResource files

Changes:

File differences

Makefile
326326
327327
328328
329
330
331
332
333
334
335
336
337
338
339
329340
330341
331342
332343
333344
334
345
335346
336347
337348
......
339350
340351
341352
342
353
343354
344355
345356
lib/Vorbisfile-CS/Vorbisfile.cs \
lib/TheoraPlay-CS/TheoraPlay.cs
RESDIR = src/Graphics/Effect/StockEffects/FXB
RESNAME = Microsoft.Xna.Framework.Graphics.Effect.Resources
RES = \
-resource:$(RESDIR)/AlphaTestEffect.fxb,$(RESNAME).AlphaTestEffect.fxb \
-resource:$(RESDIR)/BasicEffect.fxb,$(RESNAME).BasicEffect.fxb \
-resource:$(RESDIR)/DualTextureEffect.fxb,$(RESNAME).DualTextureEffect.fxb \
-resource:$(RESDIR)/EnvironmentMapEffect.fxb,$(RESNAME).EnvironmentMapEffect.fxb \
-resource:$(RESDIR)/SkinnedEffect.fxb,$(RESNAME).SkinnedEffect.fxb \
-resource:$(RESDIR)/SpriteEffect.fxb,$(RESNAME).SpriteEffect.fxb \
-resource:src/Graphics/Effect/YUVToRGBA/YUVToRGBAEffect.fxb,$(RESNAME).YUVToRGBAEffect.fxb
# Targets
debug: clean-debug
mkdir -p bin/Debug
cp FNA.dll.config bin/Debug
dmcs /unsafe -debug -define:DEBUG -out:bin/Debug/FNA.dll -target:library $(SRC)
dmcs /unsafe -debug -define:DEBUG -out:bin/Debug/FNA.dll -target:library $(SRC) $(RES)
clean-debug:
rm -rf bin/Debug
release: clean-release
mkdir -p bin/Release
cp FNA.dll.config bin/Release
dmcs /unsafe -optimize -out:bin/Release/FNA.dll -target:library $(SRC)
dmcs /unsafe -optimize -out:bin/Release/FNA.dll -target:library $(SRC) $(RES)
clean-release:
rm -rf bin/Release

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.53158s using 13 queries.