You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
351 B
Ruby
11 lines
351 B
Ruby
step :neptools_opts, after: :default_values, before: :do_build do
|
|
opt.executables = ['stcm-editor']
|
|
opt.test_executable = 'stcm-editor'
|
|
if opt.os.start_with?('windows') && opt.architecture == 'x86'
|
|
opt.executables.append 'launcher'
|
|
# also neptools-server.dll
|
|
elsif opt.os == 'vita'
|
|
opt.set! :executables, ['vita_plugin']
|
|
end
|
|
end
|