Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit 903b531

Browse files
committed
Fixes for Linux (finally)
1 parent e86364a commit 903b531

8 files changed

Lines changed: 14 additions & 2 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ git clone https://github.com/Slushi-Github/hxCompileU.git
5757

5858
# Compile the project
5959
cd hxCompileU
60-
haxelib install fuzzaldrin
6160
haxe build.hxml
6261
```
6362

src/SlushiUtils.hx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
package src;
77

8+
import sys.FileSystem;
9+
import src.JsonFile;
10+
811
using StringTools;
912

1013
/**

src/compilers/CafeCompiler.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import src.JsonFile;
1414
import src.SlushiUtils;
1515
import haxe.Resource;
1616
import src.Main;
17+
import src.utils.Defines;
1718

1819
using StringTools;
1920

src/compilers/HaxeCompiler.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import sys.FileSystem;
1212
import src.JsonFile;
1313
import src.SlushiUtils;
1414
import src.Main;
15+
import src.utils.Defines;
1516

1617
/**
1718
* The Haxe compiler, a class that handles the compilation of Haxe projects using

src/compilers/MainCompiler.hx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ package src.compilers;
99
import src.SlushiUtils;
1010
import src.compilers.CafeCompiler;
1111
import src.compilers.HaxeCompiler;
12-
1312
import src.utils.LibsManager;
13+
import src.JsonFile;
14+
import src.utils.DevKitProUtils;
15+
import src.Main;
1416

1517
using StringTools;
1618

src/utils/Defines.hx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
package src.utils;
88

9+
import src.JsonFile;
10+
import src.compilers.MainCompiler;
11+
912
/**
1013
* The Defines class is used to parse the defines that are required by the project.
1114
*

src/utils/DevKitProUtils.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
package src.utils;
88

99
import haxe.io.Path;
10+
import sys.FileSystem;
1011
import src.JsonFile;
1112

1213
/**

src/utils/LibsManager.hx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ package src.utils;
99
import haxe.Json;
1010
import sys.io.File;
1111
import sys.FileSystem;
12+
import src.JsonFile;
13+
import src.compilers.MainCompiler;
1214

1315
using StringTools;
1416

0 commit comments

Comments
 (0)