Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Jan 23, 2024
1 parent ea16cc5 commit d6486b5
Showing 1 changed file with 0 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,35 +101,6 @@ private boolean compile(BuildConfig config, CustomFileDescriptor childTarget, Ar
for(CustomFileDescriptor file : files) {
file.moveTo(childTarget);
}

// for(CustomFileDescriptor file : cppFiles) {
// String path = file.path();
// String sourceBasePath = config.sourceDir.path();
// String pathWithoutBase = file.path().replace(sourceBasePath, "");
// String pathName = file.name();
// String parent = pathWithoutBase.replace(pathName, "");
// CustomFileDescriptor toCopy = childTarget.child(parent);
// String p = toCopy.path();
// if(!toCopy.exists()) {
// toCopy.mkdirs();
// }
// p += "/";
// String compiledPath = p + file.nameWithoutExtension() + ".o";
//
// compilerCommands.clear();
// compilerCommands.addAll(cppCompiler);
// compilerCommands.addAll(cppFlags);
// compilerCommands.addAll(headerDirs);
// compilerCommands.add(path);
// compilerCommands.add(compilerOutputCommand + compiledPath);
//
// System.out.println("##### COMPILE #####");
// boolean flag = JProcess.startProcess(config.buildDir.file(), compilerCommands);
// if(!flag) {
// return false;
// }
// retFlag = true;
// }
return retFlag;
}

Expand Down

0 comments on commit d6486b5

Please sign in to comment.