summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGhsMultiGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-18 11:58:23 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-01-18 11:58:35 (GMT)
commit65a3abf999b30117447c2e62581fbcaec56aadd9 (patch)
treede9fc205fbcd9bf0fba74c82752a45bff4024bf9 /Source/cmLocalGhsMultiGenerator.h
parent2e7d4029f42430ac7339d15ae7b6f849b0f7e429 (diff)
parent21ab58d3f8782e80145f14eb6e72926c9d17afc6 (diff)
downloadCMake-65a3abf999b30117447c2e62581fbcaec56aadd9.zip
CMake-65a3abf999b30117447c2e62581fbcaec56aadd9.tar.gz
CMake-65a3abf999b30117447c2e62581fbcaec56aadd9.tar.bz2
Merge topic 'GHS_updates'
21ab58d3f8 GHS: Update test suite 72e0c115b7 GHS: Add Compiler ID detection 436cc5e991 GHS: try_compile() now uses GHS platform variables 4a1ec0de3d GHS: Fix toolset selection 1a66acdef2 GHS: Append ".gpj" to target name when generating build command 0c9e47d7cd GHS: Integrity Application updates 8044318431 GHS: Add support for some of the source file properties 73092b2213 GHS: Add support for object libraries ... Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2231
Diffstat (limited to 'Source/cmLocalGhsMultiGenerator.h')
-rw-r--r--Source/cmLocalGhsMultiGenerator.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmLocalGhsMultiGenerator.h b/Source/cmLocalGhsMultiGenerator.h
index aa842d7..d5bec42 100644
--- a/Source/cmLocalGhsMultiGenerator.h
+++ b/Source/cmLocalGhsMultiGenerator.h
@@ -24,6 +24,17 @@ public:
* Generate the makefile for this directory.
*/
virtual void Generate();
+
+ std::string GetTargetDirectory(
+ cmGeneratorTarget const* target) const override;
+
+ void ComputeObjectFilenames(
+ std::map<cmSourceFile const*, std::string>& mapping,
+ cmGeneratorTarget const* gt = nullptr) override;
+
+private:
+ void GenerateTargetsDepthFirst(cmGeneratorTarget* target,
+ std::vector<cmGeneratorTarget*>& remaining);
};
#endif