[mtouch] Auto-install locally after building in the IDE. (#1432)

Auto-install locally after building in the IDE, so that running mtouch tests
after running the mtouch project doesn't require switching to the command
line.
This commit is contained in:
Rolf Bjarne Kvinge 2017-01-03 22:34:33 +01:00 коммит произвёл Sebastien Pouliot
Родитель d3e974e2bc
Коммит b3d2b50dca
2 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -430,6 +430,12 @@ install-local:: $(TARGETS)
all-local:: $(TARGETS)
endif
mtouch: \
$(IOS_DESTDIR)$(MONOTOUCH_PREFIX)/bin/mtouch \
$(IOS_DESTDIR)$(MONOTOUCH_PREFIX)/lib/mtouch/mtouch.exe \
$(IOS_DESTDIR)$(MONOTOUCH_PREFIX)/lib/mtouch/Mono.Cecil.dll \
$(IOS_DESTDIR)$(MONOTOUCH_PREFIX)/lib/mtouch/Mono.Cecil.Mdb.dll
clean-local::
rm -Rf bin obj
rm -f $(SIMLAUNCHERS)

Просмотреть файл

@ -356,4 +356,7 @@
<LogicalName>mscorlib.xml</LogicalName>
</EmbeddedResource>
</ItemGroup>
<Target Name="AfterBuild">
<Exec Command="make mtouch" />
</Target>
</Project>