summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorChad Elliott <elliottc@objectcomputing.com>2022-10-19 08:59:24 -0500
committerChad Elliott <elliottc@objectcomputing.com>2022-10-19 08:59:24 -0500
commit9b2f5741c811fdd78f566e6293724f1f1babb2b2 (patch)
tree42889bfcfca1a97349e0834d8f25ec09d745490f /modules
parent9c4de45ba8c0215deb10066be3755a28a50237a5 (diff)
downloadMPC-9b2f5741c811fdd78f566e6293724f1f1babb2b2.tar.gz
Added a language to the workspace project.
Diffstat (limited to 'modules')
-rw-r--r--modules/CMakeWorkspaceCreator.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/CMakeWorkspaceCreator.pm b/modules/CMakeWorkspaceCreator.pm
index 4f173ca4..a71e9ce8 100644
--- a/modules/CMakeWorkspaceCreator.pm
+++ b/modules/CMakeWorkspaceCreator.pm
@@ -97,7 +97,7 @@ sub write_and_compare_file {
## If a project doesn't exist, create the basis of a project so that we
## can add our add_subdirectory() calls below it.
push(@lines, "cmake_minimum_required(VERSION $version)" . $self->crlf(),
- "project(workspace)" . $self->crlf());
+ "project(workspace CXX)" . $self->crlf());
$insert = $#lines;
}