forked from libbitcoin/libbitcoin-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate.gsl
41 lines (32 loc) · 1.4 KB
/
generate.gsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.template 0
###############################################################################
# Copyright (c) 2011-2019 libbitcoin developers (see COPYING).
#
# GSL generate libbitcoin-explorer source files.
#
# This is a code generator built using the iMatix GSL code generation
# language. See https://github.com/imatix/gsl for details.
###############################################################################
[global].trace = 0
[gsl].ignorecase = 0
gsl from "utilities.gsl"
gsl from "primitives.gsl"
# Global constants.
config_option = "config"
config_description = get_resource("BX_CONFIG_DESCRIPTION")
help_description = get_resource("BX_HELP_DESCRIPTION")
# Templates retain their natural extensions to enable editor association, and
# are therefore prefixed with 'gsl' for sorting and template identification.
# Use libbitcoin-build to generate Makefile.am from metadata and sources.
#gsl from "templates/gsl.Makefile.am"
gsl from "templates/gsl.command.hpp"
gsl from "templates/gsl.commands.hpp"
gsl from "templates/gsl.generated.hpp"
gsl from "templates/gsl.generated.cpp"
gsl from "templates/data/gsl.bx"
gsl from "templates/test/gsl.generated__broadcast.cpp"
gsl from "templates/test/gsl.generated__find.cpp"
gsl from "templates/test/gsl.generated__formerly.cpp"
gsl from "templates/test/gsl.generated__symbol.cpp"
###############################################################################
.endtemplate