Skip to content
Snippets Groups Projects
Commit f5f94955 authored by Lyle Johnson's avatar Lyle Johnson
Browse files

Make the FXSCINTILLA_INSTALL_DIR setting platform-dependent

parent f7f66ea8
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,11 @@ require './lib/fox16/version.rb' ...@@ -6,7 +6,11 @@ require './lib/fox16/version.rb'
# Some constants we'll need # Some constants we'll need
PKG_VERSION = Fox.fxrubyversion PKG_VERSION = Fox.fxrubyversion
FXSCINTILLA_INSTALL_DIR = "~/src/fxscintilla-1.71/scintilla" if RUBY_PLATFORM =~ /mingw/
FXSCINTILLA_INSTALL_DIR = "c:/src/fxscintilla-1.71/scintilla"
else
FXSCINTILLA_INSTALL_DIR = "~/src/fxscintilla-1.71/scintilla"
end
hoe = Hoe.spec "FXRuby" do hoe = Hoe.spec "FXRuby" do
# ... project specific data ... # ... project specific data ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment