COMP: Restored shared local variable removed by previous change.
This commit is contained in:
parent
af95f61d76
commit
0e15f3412f
|
@ -1067,6 +1067,9 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target,
|
||||||
{
|
{
|
||||||
std::string flags;
|
std::string flags;
|
||||||
std::string defFlags;
|
std::string defFlags;
|
||||||
|
bool shared = ((target.GetType() == cmTarget::SHARED_LIBRARY) ||
|
||||||
|
(target.GetType() == cmTarget::MODULE_LIBRARY));
|
||||||
|
|
||||||
// Add the export symbol definition for shared library objects.
|
// Add the export symbol definition for shared library objects.
|
||||||
if(const char* exportMacro = target.GetExportMacro())
|
if(const char* exportMacro = target.GetExportMacro())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue