only:custom FW repos code generation process #5817
This commit is contained in:
parent
638069375a
commit
af8c30c80e
|
@ -41,7 +41,7 @@ public class TSProjectConsumer implements ConfigurationConsumer {
|
||||||
SystemOut.println("Got " + tsContent.getPrefix().length() + "/" + tsContent.getPostfix().length() + " of " + TS_FILE_INPUT_NAME);
|
SystemOut.println("Got " + tsContent.getPrefix().length() + "/" + tsContent.getPostfix().length() + " of " + TS_FILE_INPUT_NAME);
|
||||||
|
|
||||||
// File.getPath() would eliminate potential separator at the end of the path
|
// File.getPath() would eliminate potential separator at the end of the path
|
||||||
String fileName = getTsFileOutputName(new File(tsPath).getPath());
|
String fileName = getTsFileOutputName(new File(ConfigDefinitionRootOutputFolder.getValue() + tsPath).getPath());
|
||||||
Output tsHeader = new LazyFileImpl(fileName);
|
Output tsHeader = new LazyFileImpl(fileName);
|
||||||
writeContent(fieldsSection, tsContent, tsHeader);
|
writeContent(fieldsSection, tsContent, tsHeader);
|
||||||
}
|
}
|
||||||
|
|
|
@ -373,8 +373,8 @@ public class ReaderStateImpl implements ReaderState {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void addCHeaderDestination(String cHeader) {
|
public void addCHeaderDestination(String cHeaderFileName) {
|
||||||
destinations.add(new CHeaderConsumer(this, cHeader, withC_Defines, fileFactory));
|
destinations.add(new CHeaderConsumer(this, ConfigDefinitionRootOutputFolder.getValue() + cHeaderFileName, withC_Defines, fileFactory));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addJavaDestination(String fileName) {
|
public void addJavaDestination(String fileName) {
|
||||||
|
|
Loading…
Reference in New Issue