Skip to content
Snippets Groups Projects
Commit 02732930 authored by Sergey Bronnikov's avatar Sergey Bronnikov Committed by Brad King
Browse files

create_test_sourcelist: fix typo in placeholder name

Rename `CMAKE_FUNCTION_TABLE_{ENTIRES => ENTRIES}`.
parent d231f429
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,7 @@ bool cmCreateTestSourceList(std::vector<std::string> const& args, ...@@ -125,7 +125,7 @@ bool cmCreateTestSourceList(std::vector<std::string> const& args,
mf.AddDefinition("CMAKE_TESTDRIVER_ARGVC_FUNCTION", function); mf.AddDefinition("CMAKE_TESTDRIVER_ARGVC_FUNCTION", function);
} }
mf.AddDefinition("CMAKE_FORWARD_DECLARE_TESTS", forwardDeclareCode); mf.AddDefinition("CMAKE_FORWARD_DECLARE_TESTS", forwardDeclareCode);
mf.AddDefinition("CMAKE_FUNCTION_TABLE_ENTIRES", functionMapCode); mf.AddDefinition("CMAKE_FUNCTION_TABLE_ENTRIES", functionMapCode);
bool res = true; bool res = true;
if (!mf.ConfigureFile(configFile, driver, false, true, false)) { if (!mf.ConfigureFile(configFile, driver, false, true, false)) {
res = false; res = false;
......
...@@ -34,7 +34,7 @@ typedef struct /* NOLINT */ ...@@ -34,7 +34,7 @@ typedef struct /* NOLINT */
} functionMapEntry; } functionMapEntry;
static functionMapEntry cmakeGeneratedFunctionMapEntries[] = { static functionMapEntry cmakeGeneratedFunctionMapEntries[] = {
@CMAKE_FUNCTION_TABLE_ENTIRES@ @CMAKE_FUNCTION_TABLE_ENTRIES@
{ CM_NULL, CM_NULL } /* NOLINT */ { CM_NULL, CM_NULL } /* NOLINT */
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment