Files
LuaCsForBarotraumaEP/SharpFont/Makefile
juanjp600 d6c292a2cc SharpFont + ScalableFont implementation
https://github.com/Robmaister/SharpFont

TODO: replace Code Bold.otf with the full version, fix any bugs, build on Linux, possibly move ToolBox string wrapping and limiting logic to ScalableFont class for better results.
2017-03-07 13:44:42 -03:00

17 lines
431 B
Makefile

XBUILD := xbuild
XBUILDFLAGS_RELEASE := /p:Configuration=Release
XBUILDFLAGS_DEBUG := /p:Configuration=Debug
SOLUTION := Source/SharpFont.sln
release:
$(XBUILD) $(XBUILDFLAGS_RELEASE) $(SOLUTION)
debug:
$(XBUILD) $(XBUILDFLAGS_DEBUG) $(SOLUTION)
clean:
$(XBUILD) $(XBUILDFLAGS_DEBUG) $(SOLUTION) /t:Clean
$(XBUILD) $(XBUILDFLAGS_RELEASE) $(SOLUTION) /t:Clean
.SUFFIXES:
.PHONY: release debug clean