Skip to content

Commit b6b462e

Browse files
[hide_hl] Hidehl app
1 parent cb82161 commit b6b462e

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

hide_hl.hxml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
-lib heaps
2+
-lib hscript
3+
-lib castle
4+
-lib hx3compat
5+
-lib domkit
6+
-lib hashlink
7+
-D hscriptPos
8+
# -D editor # Disabled at the moment because most of the #if editor code of hide depends on js and we don't have it in the hl target
9+
-D no-deprecation-warnings
10+
-D manual_sync_pad
11+
12+
-D hide
13+
-cp hide_hl
14+
-hl hide.hl
15+
-lib hlsdl
16+
-main hide.App
17+
--macro hide.tools.Macros.includeShaderSources()
18+
--macro include("h3d.shader")
19+
--macro include("h3d.anim")
20+
--macro include("h3d.prim")
21+
--macro include("h3d.scene")
22+
--macro include("h3d.pass")
23+
--macro include("h3d.mat")
24+
--macro include("h2d.col")
25+
--macro include("hxd.poly2tri")
26+
--macro include("hxd.clipper")
27+
--macro include("hxd.earcut")
28+
--macro include("hide.view")
29+
--macro include("hide.prefab")
30+
--macro include("hide.tools")
31+
--macro include("hrt")
32+
-dce no
33+
-debug

hide_hl/hide/App.hx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package hide;
2+
3+
class App extends hxd.App {
4+
override public function init() {
5+
6+
}
7+
8+
static function main() {
9+
new App();
10+
}
11+
}

hide_hl/hide/Ide.hx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package hide;
2+
3+
class Ide extends hide.tools.IdeData {
4+
public static var inst : Ide;
5+
}

0 commit comments

Comments
 (0)