From c51f9cd311445714a4a62ab419ee5b2d623e251c Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Sat, 3 Apr 2021 14:38:01 +0200 Subject: [PATCH] Fix typo in target type enum --- src/cmkrlib/cmake.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmkrlib/cmake.cpp b/src/cmkrlib/cmake.cpp index 80842e8..80a500d 100644 --- a/src/cmkrlib/cmake.cpp +++ b/src/cmkrlib/cmake.cpp @@ -7,7 +7,7 @@ #include template <> -const char *enumStrings::data[] = {"executable", "library", "shared", "static", "internface", "custom"}; +const char *enumStrings::data[] = {"executable", "library", "shared", "static", "interface", "custom"}; namespace cmkr { namespace cmake {