build: windows dlls

Added a bunch of dlls that should resolve the need to install certain windows updates
This commit is contained in:
Manuel Dobusch
2016-12-12 16:46:22 +01:00
parent 7cf8cbb59d
commit 2d8009535f
89 changed files with 184 additions and 26 deletions
@@ -10,13 +10,13 @@ int main()
{
std::cout << "Coati found" << std::endl;
std::cout << "Performing upgrade" << std::endl;
system("msiexec /i bin/coati.msi REINSTALL=ALL REINSTALLMODE=vomus");
system("msiexec /i coati.msi REINSTALL=ALL REINSTALLMODE=vomus");
}
else
{
std::cout << "Coati not found" << std::endl;
std::cout << "Performing initial installation" << std::endl;
system("msiexec /i bin/coati.msi");
system("msiexec /i coati.msi");
}
return 0;