Class: MiniPortileFixedCMake

Inherits:
MiniPortile
  • Object
show all
Defined in:
ext/libosrm/mini_portile_fixed_cmake.rb

Instance Method Summary collapse

Instance Method Details

#configureObject



16
17
18
19
20
21
22
23
24
# File 'ext/libosrm/mini_portile_fixed_cmake.rb', line 16

def configure
  return if configured?

  cache_file = File.join(tmp_path, "configure.options_cache")
  File.open(cache_file, "w") { |f| f.write computed_options.to_s }

  #execute("configure", %w(cmake) + computed_options + [ "-Bbuild" ] + [ "-H." ])
  execute("configure", %w(cmake) + computed_options + [ ".." ])
end

#configure_defaultsObject



8
9
10
11
12
13
14
# File 'ext/libosrm/mini_portile_fixed_cmake.rb', line 8

def configure_defaults
  if MiniPortile.windows?
    [ '-G "NMake Makefiles"' ]
  else
    [ "-DBUILD_SHARED_LIBS=ON" ]
  end
end

#configure_prefixObject



4
5
6
# File 'ext/libosrm/mini_portile_fixed_cmake.rb', line 4

def configure_prefix
  "-DCMAKE_INSTALL_PREFIX=#{File.expand_path(port_path)}"
end

#configured?Boolean

Returns:

  • (Boolean)


26
27
28
29
30
31
32
33
34
35
# File 'ext/libosrm/mini_portile_fixed_cmake.rb', line 26

def configured?
  configure = File.join(work_path, "configure")
  makefile  = File.join(work_path, "CMakefile")
  cache_file  = File.join(tmp_path, "configure.options_cache")

  stored_options  = File.exist?(cache_file) ? File.read(cache_file) : ""
  current_options = computed_options.to_s

  (current_options == stored_options) && newer?(makefile, configure)
end

#make_cmdObject



37
38
39
40
# File 'ext/libosrm/mini_portile_fixed_cmake.rb', line 37

def make_cmd
  return "nmake" if MiniPortile.windows?
  super
end

#work_pathObject

def tmp_path

"nya"

end



46
47
48
49
50
# File 'ext/libosrm/mini_portile_fixed_cmake.rb', line 46

def work_path
    orig = super
    Dir.mkdir "#{orig}/build" unless Dir.exist? "#{orig}/build"
    "#{orig}/build"
end