We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 557632f commit 6091c5bCopy full SHA for 6091c5b
packages/cli-platform-android/src/config/index.ts
@@ -169,7 +169,10 @@ export function dependencyConfig(
169
const cxxModuleCMakeListsModuleName =
170
userConfig.cxxModuleCMakeListsModuleName || null;
171
const cxxModuleHeaderName = userConfig.cxxModuleHeaderName || null;
172
- let cxxModuleCMakeListsPath = userConfig.cxxModuleCMakeListsPath || null;
+ let cxxModuleCMakeListsPath = userConfig.cxxModuleCMakeListsPath
173
+ ? path.join(sourceDir, userConfig.cxxModuleCMakeListsPath)
174
+ : null;
175
+
176
if (process.platform === 'win32') {
177
cmakeListsPath = cmakeListsPath.replace(/\\/g, '/');
178
if (cxxModuleCMakeListsPath) {
0 commit comments