1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-15 20:03:15 +02:00

Fixing Mac OS building issues

This commit is contained in:
Ilya Pomaskin
2014-10-01 17:47:37 +04:00
parent f7882135e6
commit 67506144ae

View File

@@ -448,7 +448,7 @@ std::vector<bfs::path> VCMIDirsOSX::dataPaths() const
bfs::path VCMIDirsOSX::libraryPath() const { return "."; }
bfs::path VCMIDirsOSX::binaryPath() const { return "."; }
std::string libraryName(const std::string& basename) { return "lib" + basename + ".dylib"; }
std::string VCMIDirsOSX::libraryName(const std::string& basename) const { return "lib" + basename + ".dylib"; }
#elif defined(VCMI_LINUX)
class VCMIDirsLinux : public IVCMIDirsUNIX
{