diff options
author | Brad King <brad.king@kitware.com> | 2020-05-14 19:09:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-05-18 16:56:56 (GMT) |
commit | 3fa3b7a40273ba1e95c68794e1685345c8f78ab0 (patch) | |
tree | 3d755b8d43441fb1af0aefc1dbec9ba82f679658 /Source/cmExportBuildAndroidMKGenerator.cxx | |
parent | d6a88d21589f5b614baea16b25261b416651533c (diff) | |
download | CMake-3fa3b7a40273ba1e95c68794e1685345c8f78ab0.zip CMake-3fa3b7a40273ba1e95c68794e1685345c8f78ab0.tar.gz CMake-3fa3b7a40273ba1e95c68794e1685345c8f78ab0.tar.bz2 |
cmGeneratorTarget: Remove default config from Get* methods
Ensure all call sites pass an explicit configuration.
Diffstat (limited to 'Source/cmExportBuildAndroidMKGenerator.cxx')
-rw-r--r-- | Source/cmExportBuildAndroidMKGenerator.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmExportBuildAndroidMKGenerator.cxx b/Source/cmExportBuildAndroidMKGenerator.cxx index 0ee1259..3641cb2 100644 --- a/Source/cmExportBuildAndroidMKGenerator.cxx +++ b/Source/cmExportBuildAndroidMKGenerator.cxx @@ -47,7 +47,9 @@ void cmExportBuildAndroidMKGenerator::GenerateImportTargetCode( os << "LOCAL_MODULE := "; os << targetName << "\n"; os << "LOCAL_SRC_FILES := "; - std::string path = cmSystemTools::ConvertToOutputPath(target->GetFullPath()); + std::string const noConfig; // FIXME: What config to use here? + std::string path = + cmSystemTools::ConvertToOutputPath(target->GetFullPath(noConfig)); os << path << "\n"; } |