mirror of
https://github.com/nasa/trick.git
synced 2025-06-21 08:29:39 +00:00
er7_util header files not being installed
Added a makefile install rule to copy the header files out of er7_utils to the install directory. Adjusted ICG to ignore Trick header files if they are installed. refs #246
This commit is contained in:
@ -121,7 +121,12 @@ void HeaderSearchDirs::AddTrickSearchDirs () {
|
||||
std::string temp_dir = std::string(trick_home) + "/include/trick" ;
|
||||
char * resolved_path = almostRealPath(temp_dir.c_str() ) ;
|
||||
hso.AddPath(resolved_path , clang::frontend::Quoted, false, true);
|
||||
trick_include_dir = std::string(resolved_path) ;
|
||||
//trick_include_dir = std::string(resolved_path) ;
|
||||
free(resolved_path) ;
|
||||
|
||||
temp_dir = std::string(trick_home) + "/include/er7_utils" ;
|
||||
resolved_path = almostRealPath(temp_dir.c_str() ) ;
|
||||
hso.AddPath(resolved_path , clang::frontend::Quoted, false, true);
|
||||
free(resolved_path) ;
|
||||
|
||||
temp_dir = std::string(trick_home) + "/trick_source" ;
|
||||
@ -129,6 +134,10 @@ void HeaderSearchDirs::AddTrickSearchDirs () {
|
||||
hso.AddPath(resolved_path , clang::frontend::Quoted, false, true);
|
||||
trick_source_dir = std::string(resolved_path) ;
|
||||
free(resolved_path) ;
|
||||
|
||||
temp_dir = std::string(trick_home) + "/include" ;
|
||||
resolved_path = almostRealPath(temp_dir.c_str() ) ;
|
||||
trick_include_dir = std::string(resolved_path) ;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user