summaryrefslogtreecommitdiff
path: root/gen/constants.rs
blob: 140743d13b0afa27ef7b87a5ebc3be7b3ca4a256 (plain)
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
pub const COMMANDS_PATH: &str = "./src/cmds/cmd/";
pub const COMPLETIONS_PATH: &str = "./src/cmds/comp/";
pub const RENDERERS_PATH: &str = "./src/cmds/renderer/";

pub const COMPILE_INFO_RS_TEMPLATE: &str = "./templates/compile_info.rs.template";
pub const COMPILE_INFO_RS: &str = "./src/data/compile_info.rs";

pub const SETUP_JV_CLI_ISS_TEMPLATE: &str = "./templates/setup_jv_cli.iss.template";
pub const SETUP_JV_CLI_ISS: &str = "./scripts/setup/windows/setup_jv_cli.iss";

pub const COMMAND_LIST_TEMPLATE: &str = "./templates/_commands.rs.template";
pub const COMMAND_LIST: &str = "./src/systems/cmd/_commands.rs";

pub const COMPLETIONS_TEMPLATE: &str = "./templates/_comps.rs.template";
pub const COMPLETIONS: &str = "./src/systems/comp/_comps.rs";

pub const OVERRIDE_RENDERER_DISPATCHER_TEMPLATE: &str =
    "./templates/_override_renderer_dispatcher.rs.template";
pub const OVERRIDE_RENDERER_DISPATCHER: &str =
    "./src/systems/render/_override_renderer_dispatcher.rs";

pub const OVERRIDE_RENDERER_ENTRY_TEMPLATE: &str =
    "./templates/_override_renderer_entry.rs.template";
pub const OVERRIDE_RENDERER_ENTRY: &str = "./src/systems/render/_override_renderer_entry.rs";

pub const OVERRIDE_RENDERERS_TEMPLATE: &str = "./templates/_override_renderers.rs.template";
pub const OVERRIDE_RENDERERS: &str = "./src/systems/render/_override_renderers.rs";

pub const SPECIFIC_RENDERER_MATCHING_TEMPLATE: &str =
    "./templates/_specific_renderer_matching.rs.template";
pub const SPECIFIC_RENDERER_MATCHING: &str = "./src/systems/render/_specific_renderer_matching.rs";

pub const REGISTRY_TOML: &str = "./.cargo/registry.toml";

pub const TEMPLATE_START: &str = "// -- TEMPLATE START --";
pub const TEMPLATE_END: &str = "// -- TEMPLATE END --";