diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-02-01 16:40:25 +0100 |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-02-01 17:02:53 +0100 |
commit | 6d407ae439f1db086dd7a3675c8efce93a19fed3 (patch) | |
tree | 64ad3eaae4121fdba981a1f37931fa261b1c5966 /Source/cmExtraCodeBlocksGenerator.cxx | |
parent | 2ddf3f4467bdd600027dd3532515d05d44996871 (diff) | |
download | cmake-6d407ae439f1db086dd7a3675c8efce93a19fed3.tar.gz |
Use cmSourceFile::GetIsGenerated
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 397508c61d..e408de3848 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -362,7 +362,7 @@ void cmExtraCodeBlocksGenerator::CreateNewProjectFile( // don't add source files from UTILITY target which have the // GENERATED property set: if (gt->GetType() == cmStateEnums::UTILITY && - s->GetPropertyAsBool("GENERATED")) { + s->GetIsGenerated()) { continue; } |