changed to new dll naming scheme

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1784 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
Trass3r 2011-01-30 18:09:15 +00:00
parent f7427fe167
commit 1b0bdfe7de
16 changed files with 39 additions and 48 deletions

View file

@ -56,9 +56,9 @@ string loadFromSharedLib2(S...)(string lib, string className, S fnames)
string res = `static this()
{
debug
DllLoader dll = DllLoader.load("` ~ lib ~ `-d");
DllLoader dll = DllLoader.load("` ~ lib ~ `-d-2");
else
DllLoader dll = DllLoader.load("` ~ lib ~ `");
DllLoader dll = DllLoader.load("` ~ lib ~ `-2");
`;
@ -74,9 +74,9 @@ string loadDerivedFromSharedLib(S...)(string lib, string baseClass, string deriv
string res = `static this()
{
debug
DllLoader dll = DllLoader.load("` ~ lib ~ `-d");
DllLoader dll = DllLoader.load("` ~ lib ~ `-d-2");
else
DllLoader dll = DllLoader.load("` ~ lib ~ `");
DllLoader dll = DllLoader.load("` ~ lib ~ `-2");
`;