mirror of
https://github.com/nasa/trick.git
synced 2025-06-22 00:41:52 +00:00
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:
@ -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 ;
|
||||
|
Reference in New Issue
Block a user