mirror of
https://github.com/BotChain-Robots/ui.git
synced 2026-07-08 15:07:22 +02:00
Remove not needed copy of library file
This commit is contained in:
@@ -25,11 +25,6 @@ public class BuildScript
|
||||
BuildTarget.StandaloneLinux64,
|
||||
BuildOptions.None
|
||||
);
|
||||
|
||||
string sourceSoPath = "Assets/ControlLibrary/libc_control.so";
|
||||
string destSoPath = Path.Combine(Path.GetDirectoryName(outputPath), "libc_control.so");
|
||||
|
||||
File.Copy(sourceSoPath, destSoPath, overwrite: true);
|
||||
}
|
||||
|
||||
public static void BuildMac()
|
||||
@@ -42,10 +37,5 @@ public class BuildScript
|
||||
BuildTarget.StandaloneOSX,
|
||||
BuildOptions.None
|
||||
);
|
||||
|
||||
string sourceSoPath = "Assets/ControlLibrary/libc_control.dylib";
|
||||
string destSoPath = Path.Combine(Path.GetDirectoryName(outputPath), "libc_control.dylib");
|
||||
|
||||
File.Copy(sourceSoPath, destSoPath, overwrite: true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user