File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import src.utils.UDPListener;
77
88class Main {
99 public static var hxcompileuString = " \x1b [38;5;214mHx\033 [0mCompile\x1b [38;5;74mU\033 [0m" ;
10- public static var version : String = " 1.3.5 " ;
10+ public static var version : String = " 1.3.6 " ;
1111 static var stdin = Sys .stdin ();
1212 static var stdout = Sys .stdout ();
1313 static var args = Sys .args ();
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class CafeCompiler {
4747 var makefileContent : String = Resource .getString (" cafeMakefileWUT" );
4848 makefileContent = makefileContent .replace (" [PROGRAM_VERSION]" , Main .version );
4949 makefileContent = makefileContent .replace (" [PROJECT_NAME]" , jsonFile .wiiuConfig .projectName );
50- makefileContent = makefileContent .replace (" [SOURCE_DIR]" , jsonFile .haxeConfig .outDir + " /" + jsonFile . haxeConfig . sourceDir );
50+ makefileContent = makefileContent .replace (" [SOURCE_DIR]" , jsonFile .haxeConfig .outDir + " /src " );
5151 makefileContent = makefileContent .replace (" [INCLUDE_DIR]" , jsonFile .haxeConfig .outDir + " /include" );
5252 makefileContent = makefileContent .replace (" [LIBS]" , parseMakeLibs ());
5353 makefileContent = makefileContent .replace (" [DEFINES]" , parseMakeDefines ());
You can’t perform that action at this time.
0 commit comments