1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef cmMakefileLibraryTargetGenerator_h
- #define cmMakefileLibraryTargetGenerator_h
- #include "cmConfigure.h"
- #include "cmMakefileTargetGenerator.h"
- #include <string>
- class cmGeneratorTarget;
- class cmMakefileLibraryTargetGenerator : public cmMakefileTargetGenerator
- {
- public:
- cmMakefileLibraryTargetGenerator(cmGeneratorTarget* target);
- ~cmMakefileLibraryTargetGenerator() override;
-
- void WriteRuleFiles() override;
- protected:
- void WriteObjectLibraryRules();
- void WriteStaticLibraryRules();
- void WriteSharedLibraryRules(bool relink);
- void WriteModuleLibraryRules(bool relink);
- void WriteDeviceLibraryRules(const std::string& linkRule,
- const std::string& extraFlags, bool relink);
- void WriteLibraryRules(const std::string& linkRule,
- const std::string& extraFlags, bool relink);
-
- void WriteFrameworkRules(bool relink);
-
- std::string FrameworkVersion;
- private:
- std::string DeviceLinkObject;
- };
- #endif
|