forked from Kode/khamake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Options.ts
51 lines (47 loc) · 959 Bytes
/
Options.ts
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
42
43
44
45
46
47
48
49
50
51
"use strict";
import {GraphicsApi} from './GraphicsApi';
import {VisualStudioVersion} from './VisualStudioVersion';
import {VrApi} from './VrApi';
/*
export var Options = {
precompiledHeaders: false,
intermediateDrive: '',
graphicsApi: GraphicsApi.Direct3D9,
vrApi: VrApi.None,
visualStudioVersion: VisualStudioVersion.VS2013,
compilation: true,
compile: false,
run: false
};
*/
export class Options {
from: string;
to: string;
projectfile: string;
target: string;
vr: string;
//intermediate: string;
graphics: string;
visualstudio: string;
kha: string;
haxe: string;
ffmpeg: string;
krafix: string;
embedflashassets: boolean;
compile: boolean;
run: boolean;
init: boolean;
name: string;
server: boolean;
port: string;
debug: boolean;
silent: boolean;
watch: boolean;
ogg: string;
aac: string;
mp3: string;
h264: string;
webm: string;
wmv: string;
theora: string;
}