Skip to content

Commit bea73b9

Browse files
committed
cleanup
1 parent 8eac395 commit bea73b9

2 files changed

Lines changed: 0 additions & 16 deletions

File tree

commandLine/src/main.cpp

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -225,12 +225,6 @@ void updateProject(const fs::path & path, ofTargetPlatform target, bool bConside
225225
if (!bDryRun) project->create(path, templateName);
226226

227227
if(bConsiderParameterAddons && bAddonsPassedIn){
228-
229-
//cout << "---->> addons.size " << addons.size() << endl;
230-
for (auto & a : addons) {
231-
cout << a << endl;
232-
}
233-
234228
for(auto & addon: addons){
235229
project->addAddon(addon);
236230
}
@@ -249,7 +243,6 @@ void updateProject(const fs::path & path, ofTargetPlatform target, bool bConside
249243
}
250244

251245
void recursiveUpdate(const fs::path & path, ofTargetPlatform target) {
252-
// cout << "recursiveUpdate path=" << path << " target=" << target << endl;
253246
// first, bail if it's just a file
254247
if (!fs::is_directory(path)) return;
255248

@@ -258,10 +251,8 @@ void recursiveUpdate(const fs::path & path, ofTargetPlatform target) {
258251
nProjectsUpdated++;
259252
auto project = getTargetProject(target);
260253
updateProject(path, target, false);
261-
// cout << "isGoodProjectPath is true " << path << endl;
262254
return;
263255
} else {
264-
// cout << "isGoodProjectPath is false " << path << endl;
265256
}
266257

267258
// finally, recursively look at this

commandLine/src/projects/baseProject.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,6 @@ void baseProject::addAddon(ofAddon & addon){
493493
}
494494

495495
void baseProject::parseAddons(){
496-
// alert("--- parseAddons");
497-
498496
ofFile addonsMake(ofFilePath::join(projectDir,"addons.make"));
499497
ofBuffer addonsMakeMem;
500498
addonsMake >> addonsMakeMem;
@@ -504,8 +502,6 @@ void baseProject::parseAddons(){
504502
if(addon == "") continue;
505503
addAddon(ofSplitString(addon, "#")[0]);
506504
}
507-
// alert("--- end parseAddons");
508-
509505
}
510506

511507
void baseProject::parseConfigMake(){
@@ -530,12 +526,9 @@ void baseProject::parseConfigMake(){
530526
}
531527

532528
void baseProject::recursiveTemplateCopy(const fs::path & srcDir, const fs::path & destDir){
533-
// cout << "recursiveTemplateCopy src:" << srcDir << " : dest:" << destDir << endl;
534529
for (const auto & entry : fs::directory_iterator(srcDir)) {
535530
auto f = entry.path();
536531
auto destFile = destDir / f.filename();
537-
cout << " f = " << f << endl;
538-
cout << " destFile = " << destFile << endl;
539532
if (fs::is_directory(f)) {
540533
recursiveTemplateCopy(f, destFile);
541534
}

0 commit comments

Comments
 (0)