Split CP up into components that can be called individually

After about 6 unsuccessful builds I decided to run the unit tests
before checking in these files.  I fixed the integrator unit
test that was failing from a previous issue along with problems
with the sims.

refs #86
This commit is contained in:
Alex Lin
2015-07-21 15:10:40 -05:00
parent 1bf08aeb55
commit d72555f3cc
3 changed files with 3 additions and 27 deletions

View File

@ -522,8 +522,9 @@ void PrintAttributes::printHeaderLibraryDependencies() {
std::string lib_dep_file = std::string("build") + (*sit).substr(0,found) + ".lib_deps" ;
char * dir_name ;
dir_name = dirname((char *)lib_dep_file.c_str()) ;
dir_name = dirname(strdup((char *)lib_dep_file.c_str())) ;
_mkdir(dir_name) ;
free(dir_name) ;
std::vector< std::string > lib_deps = cs.getLibraryDependencies((*sit)) ;
std::vector< std::string >::iterator vit ;