({debug, platform})
| 19 | } |
| 20 | |
| 21 | export function getDestDir({debug, platform}) { |
| 22 | const buildTypeDir = `build/${debug ? 'debug' : 'release'}`; |
| 23 | return `${buildTypeDir}/${platform}`; |
| 24 | } |
| 25 | |
| 26 | export default { |
| 27 | getDestDir, |
no outgoing calls
no test coverage detected