diff options
author | Fred Baksik <frodak17@gmail.com> | 2019-04-08 13:55:34 (GMT) |
---|---|---|
committer | Fred Baksik <frodak17@gmail.com> | 2019-04-11 17:15:50 (GMT) |
commit | 39ee9718d9a56e7b8b15f63576f042415a2771f8 (patch) | |
tree | 3a63e90cd4ced8beaf7c41756bde12a071b3bb6d /Source/cmGhsMultiGpj.cxx | |
parent | 8d3dad9a76591ae0426335d039b8aaacb95862cd (diff) | |
download | CMake-39ee9718d9a56e7b8b15f63576f042415a2771f8.zip CMake-39ee9718d9a56e7b8b15f63576f042415a2771f8.tar.gz CMake-39ee9718d9a56e7b8b15f63576f042415a2771f8.tar.bz2 |
GHS: Support add_custom_target() command
-- add new project type that runs shell scripts in proper order
Diffstat (limited to 'Source/cmGhsMultiGpj.cxx')
-rw-r--r-- | Source/cmGhsMultiGpj.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGhsMultiGpj.cxx b/Source/cmGhsMultiGpj.cxx index 8b69b51..da27971 100644 --- a/Source/cmGhsMultiGpj.cxx +++ b/Source/cmGhsMultiGpj.cxx @@ -9,7 +9,8 @@ static const char* GHS_TAG[] = { "[INTEGRITY Application]", "[Project]", "[Program]", "[Reference]", - "[Subproject]" }; + "[Subproject]", + "[Custom Target]" }; const char* GhsMultiGpj::GetGpjTag(Types gpjType) { @@ -21,6 +22,7 @@ const char* GhsMultiGpj::GetGpjTag(Types gpjType) case PROGRAM: case REFERENCE: case SUBPROJECT: + case CUSTOM_TARGET: tag = GHS_TAG[gpjType]; break; default: |