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.
20 lines
784 B
Ruby
20 lines
784 B
Ruby
#! /usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require_relative 'libshit/gen_binding'
|
|
|
|
Parser.add_src [LuaBinding], %w(
|
|
src/dumpable.cpp src/endian.cpp src/open.cpp src/sink.cpp src/source.cpp
|
|
src/txt_serializable.cpp
|
|
src/format/cl3.cpp src/format/context.cpp src/format/cstring_item.cpp
|
|
src/format/eof_item.cpp src/format/gbnl.cpp src/format/item.cpp
|
|
src/format/primitive_item.cpp src/format/raw_item.cpp
|
|
src/format/stcm/collection_link.cpp src/format/stcm/data.cpp
|
|
src/format/stcm/expansion.cpp src/format/stcm/exports.cpp
|
|
src/format/stcm/file.cpp src/format/stcm/gbnl.cpp src/format/stcm/header.cpp
|
|
src/format/stcm/instruction.cpp src/format/stcm/string_data.cpp
|
|
src/format/stsc/file.cpp src/format/stsc/header.cpp
|
|
src/format/stsc/instruction.cpp
|
|
)
|
|
main
|