This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
#!/usr/bin/ruby -KU |
| 2 |
# encoding: utf-8 |
| 3 |
|
| 4 |
$LOAD_PATH << File.dirname( __FILE__ ) |
| 5 |
|
| 6 |
module RPProj |
| 7 |
|
| 8 |
# Icon path. |
| 9 |
# |
| 10 |
# Points to the application's icon directory. |
| 11 |
ICON_PATH = "#{File.dirname( __FILE__ )}/gfx/icons/" |
| 12 |
|
| 13 |
end |
| 14 |
|
| 15 |
require 'app/Application.rb' |
| 16 |
|
| 17 |
require 'Qt4' |
| 18 |
|
| 19 |
Qt::CoreApplication::setOrganizationName("RPdev"); |
| 20 |
Qt::CoreApplication::setOrganizationDomain("rpdev.net"); |
| 21 |
Qt::CoreApplication::setApplicationName("RPProj") |
| 22 |
|
| 23 |
app = RPProj::Application.new( ARGV ) |
| 24 |
exit app.exec |