MayaFlux
0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches
◆
format_library_name()
std::string MayaFlux::Platform::SystemConfig::format_library_name
(
const std::string &
library_name
)
static
private
Definition at line
186
of file
HostEnvironment.cpp
.
187
{
188
#ifdef MAYAFLUX_PLATFORM_WINDOWS
189
if
(library_name.find(
".lib"
) == std::string::npos) {
190
return
library_name +
".lib"
;
191
}
192
#else
193
if
(library_name.find(
".a"
) == std::string::npos && library_name.find(
".so"
) == std::string::npos) {
194
return
"lib"
+ library_name +
".a"
;
195
}
196
#endif
197
return
library_name;
198
}
Referenced by
find_library()
.
Here is the caller graph for this function:
MayaFlux
Platform
SystemConfig
Generated by
1.9.8