mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-28 22:47:04 +00:00
- We now have class hierarchy information! Don't remove generated headers before doxygen runs so it can generate class hierarchies. Now the headers are cleaned up separately. - Added inline collapsible class hierarchy diagrams within each class. - Enabled the built-in search! It's awesome! - Changed image format to gif, dot is generated invalid png on Mac OS X. - Explicitly turned off generation of to do and bug list. - Turned off most warnings, most of them are useless warnings arising from the fact that we are pretending Objective-J is Objective-C. - Doxyfile format updated to 1.7.1.
10 lines
184 B
Ruby
Executable File
10 lines
184 B
Ruby
Executable File
#! /usr/bin/env ruby
|
|
|
|
filename = File.dirname(__FILE__) + "/header_files"
|
|
@files = File.new(filename).read.split("\n")
|
|
|
|
for file in @files
|
|
File.delete(file)
|
|
end
|
|
|
|
File.delete(filename) |