11 lines
278 B
Ruby
11 lines
278 B
Ruby
require 'fileutils'
|
|
|
|
$: << File.expand_path("../../../lib", __FILE__)
|
|
|
|
require 'qt/qmake'
|
|
|
|
system %{make clean}
|
|
Qt::Qmake.make!('jasmine-headless-webkit', 'specrunner.pro')
|
|
|
|
FileUtils.cp File.expand_path('../Makefile.dummy', __FILE__), File.expand_path('../Makefile', __FILE__)
|