diff options
author | David Cole <david.cole@kitware.com> | 2007-10-10 15:06:15 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2007-10-10 15:06:15 (GMT) |
commit | 8e4c7b99e1b73c641308c0177673dac33fe57df1 (patch) | |
tree | ad00c757835a3ac785fd1b3e78ca3b75c2f1a354 /Source/cmMakefileLibraryTargetGenerator.cxx | |
parent | aa9ba5c3efcd32ea631435318f63dc476ac39798 (diff) | |
download | CMake-8e4c7b99e1b73c641308c0177673dac33fe57df1.zip CMake-8e4c7b99e1b73c641308c0177673dac33fe57df1.tar.gz CMake-8e4c7b99e1b73c641308c0177673dac33fe57df1.tar.bz2 |
ENH: Finish up the Framework creation code restructuring. Frameworks build and install now. More work needed on the packaging step. See Tests/Framework for example use.
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.cxx | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index 5f5cbee..a2aedd5 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -252,16 +252,12 @@ void cmMakefileLibraryTargetGenerator::CreateFrameworkLinksAndDirs( symlink2 = "Resources"; cmSystemTools::CreateSymlink(symlink.c_str(), symlink2.c_str()); this->Makefile->AddCMakeOutputFile((outpath + "Resources").c_str()); - // Libraries -> Versions/Current/Libraries - //symlink = "Versions/Current/Libraries"; - //symlink2 = "Libraries"; - //cmSystemTools::CreateSymlink(symlink.c_str(), symlink2.c_str()); - //this->Makefile->AddCMakeOutputFile((outpath + "Libraries").c_str()); // Headers -> Versions/Current/Headers symlink = "Versions/Current/Headers"; symlink2 = "Headers"; cmSystemTools::CreateSymlink(symlink.c_str(), symlink2.c_str()); this->Makefile->AddCMakeOutputFile((outpath + "Headers").c_str()); + // PrivateHeaders -> Versions/Current/PrivateHeaders symlink = "Versions/Current/PrivateHeaders"; symlink2 = "PrivateHeaders"; cmSystemTools::CreateSymlink(symlink.c_str(), symlink2.c_str()); @@ -278,12 +274,14 @@ void cmMakefileLibraryTargetGenerator::CopyFrameworkSources( const char* propertyName, const char* subdir) { - std::string fullOutput= outpath + targetName; + std::string fullOutput = outpath + targetName; cmCustomCommandLines commandLines; std::vector<std::string> depends; const std::vector<cmSourceFile*>& sources = this->Target->GetSourceFiles(); + std::string propName(propertyName); + for(std::vector<cmSourceFile*>::const_iterator i = sources.begin(); i != sources.end(); ++i) { @@ -296,16 +294,20 @@ void cmMakefileLibraryTargetGenerator::CopyFrameworkSources( continue; } + cmTarget::SourceFileFlags tsFlags = + this->Target->GetTargetSourceFileFlags(sf); + // If processing public headers, skip headers also marked with the private // property. Private wins. // - if((std::string(propertyName) == "FRAMEWORK_PUBLIC_HEADER") && - sf->GetPropertyAsBool("FRAMEWORK_PRIVATE_HEADER")) + if(tsFlags.PrivateHeader && (propName == "PUBLIC_HEADER")) { continue; } - if(sf->GetPropertyAsBool(propertyName)) + if(tsFlags.PrivateHeader && (propName == "PRIVATE_HEADER") || + tsFlags.PublicHeader && (propName == "PUBLIC_HEADER") || + tsFlags.Resource && (propName == "RESOURCE")) { cmCustomCommandLine line; std::string dest = outpath + subdir + "/"; @@ -318,8 +320,7 @@ void cmMakefileLibraryTargetGenerator::CopyFrameworkSources( line.push_back(dest); commandLines.push_back(line); // make sure the target gets rebuilt if any of the headers is removed - this->GenerateExtraOutput(dest.c_str(), - fullOutput.c_str()); + this->GenerateExtraOutput(dest.c_str(), fullOutput.c_str()); } } @@ -345,12 +346,11 @@ void cmMakefileLibraryTargetGenerator::CreateFramework( const char* version = this->Target->GetProperty("FRAMEWORK_VERSION"); if(!version) { + version = this->Target->GetProperty("VERSION"); + } + if(!version) + { version = "A"; - //std::string message = - // "Warning: FRAMEWORK_VERSION property not found on "; - //message += targetName; - //message += ". Default to version A."; - //cmSystemTools::Message(message.c_str()); } // create the symbolic links and directories this->CreateFrameworkLinksAndDirs(targetName, @@ -383,13 +383,13 @@ void cmMakefileLibraryTargetGenerator::CreateFramework( false, false, false); this->CopyFrameworkSources(targetName, outpath, version, - "FRAMEWORK_PRIVATE_HEADER", "PrivateHeaders"); + "PRIVATE_HEADER", "PrivateHeaders"); this->CopyFrameworkSources(targetName, outpath, version, - "FRAMEWORK_PUBLIC_HEADER", "Headers"); + "PUBLIC_HEADER", "Headers"); this->CopyFrameworkSources(targetName, outpath, version, - "FRAMEWORK_RESOURCE", "Resources"); + "RESOURCE", "Resources"); } //---------------------------------------------------------------------------- |