Method: Test#initialize

Defined in:
lib/makeconf/test.rb

#initialize(options) ⇒ Test

Returns a new instance of Test.



4
5
6
7
8
9
10
11
12
13
14
# File 'lib/makeconf/test.rb', line 4

def initialize(options)
  super(options)

  @installable = false
  @distributable = false

  @ldflags = [ '-rpath .' ]

  # Assume that unit tests should be debuggable
  @cflags.push('-g', '-O0') unless Platform.is_windows?
end