Sunjammer's plug-in feature optimized a bit. Still some work is done in the installer it self, but I am currently working on it

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@661 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-07 21:55:00 +00:00
parent 7894df4758
commit 6b6709196d
3 changed files with 29 additions and 222 deletions

View file

@ -1840,8 +1840,7 @@ void CEXEBuild::build_plugin_table(void)
char* searchPath = new char [strlen(nsisdir)+6];
if (searchPath)
{
strcpy(searchPath,nsisdir);
strcat(searchPath,"\\bin");
wsprintf(searchPath,"%s\\bin",nsisdir);
INFO_MSG("\nProcessing plugin dlls: \"%s\\*.dll\"\n",searchPath);
m_plugins.FindCommands(searchPath,display_info?true:false);
delete[] searchPath;