mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
2f524481c1
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1002 4e206d99-4929-0410-ac5d-dfc041789085
31 lines
565 B
Ruby
31 lines
565 B
Ruby
require "mkmf"
|
|
$CFLAGS = "/MD /O2 /EHsc /DWIN32 /DNDEBUG /D_WINDOWS"
|
|
#$CFLAGS = "/MD /Zi /EHsc /DWIN32 /DNDEBUG /D_WINDOWS"
|
|
#$LDFLAGS = "/Zi"
|
|
|
|
dir_config('SFML')
|
|
|
|
libs = [
|
|
"gdi32",
|
|
"opengl32",
|
|
"glu32",
|
|
"sfml-system-s",
|
|
"sfml-window-s",
|
|
"sfml-graphics-s",
|
|
"sfml-audio-s",
|
|
]
|
|
|
|
libs.each {|lib|
|
|
unless have_library(lib)
|
|
puts "Unable to find #{lib}.lib!"
|
|
puts "Please specify the path to them using:"
|
|
puts "--with-SFML-lib=lib_path"
|
|
puts "--with-SFML-include=include_path"
|
|
puts
|
|
exit
|
|
end
|
|
}
|
|
|
|
create_makefile("RubySFML")
|
|
|