Changeset 2354 in kBuild
- Timestamp:
- Aug 11, 2009 3:12:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VSlickMacros/kdev.e
r2350 r2354 70 70 def 'C-S-P' = k_mark_modified_line 71 71 def 'C-S-S' = k_box_structs 72 def 'C-S-T' = odin32_maketagfile72 def 'C-S-T' = k_rebuild_tagfile 73 73 def 'C-S-L' = k_style_load 74 74 … … 1970 1970 } 1971 1971 1972 1973 /******************************************************************************* 1974 * Odin32 backward compatibility * 1975 *******************************************************************************/ 1976 _command void odin32_maketagfile() 1977 { 1978 /* We'll */ 1972 /** @todo move to kkeys.e */ 1973 _command void k_rebuild_tagfile() 1974 { 1975 #if 1 /*__VERSION__ < 14.0*/ 1979 1976 if (file_match('-p 'maybe_quote_filename(strip_filename(_project_name,'e'):+TAG_FILE_EXT),1) != "") 1980 { 1981 _project_update_files_retag(false,false,false,false); 1982 /* 1983 RetagFilesInTagFile2(project_tag_file, orig_view_id, temp_view_id, rebuild_all, false, 1984 doRemove,false,true,true);*/ 1985 } 1977 _project_update_files_retag(false, false, false, false); 1986 1978 else 1987 _project_update_files_retag(true,false,false,true); 1988 } 1989 1990 _command void odin32_setcurrentdir() 1991 { 1992 //_ini_get_value(_project_name,"COMPILER","WORKINGDIR", workingdir); 1993 //cd(workingdir); 1994 /* Go the the directory containing the project filename */ 1995 cd(strip_filename(_project_name, 'NE')); 1996 } 1997 1998 1979 _project_update_files_retag(true, false, false, true); 1980 #else 1981 _str sArgs = "-refs=on"; 1982 if (file_match('-p 'maybe_quote_filename(strip_filename(_project_name,'e'):+TAG_FILE_EXT),1) != "") 1983 sArgs = sArgs :+ " -retag"; 1984 sArgs = sArgs :+ " " :+ _workspace_filename; 1985 build_workspace_tagfiles(sArgs); 1986 #endif 1987 } 1999 1988 2000 1989
Note:
See TracChangeset
for help on using the changeset viewer.