anisette is done, how to sign?
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
#include "helper.h"
|
||||
#include "tier0/lib.h"
|
||||
#include "tier0/platform.h"
|
||||
#include "tier1/commandline.h"
|
||||
#include "tier0/commandline.h"
|
||||
#include "tier1/interface.h"
|
||||
#include "runner.h"
|
||||
#include "tier1/utlstring.h"
|
||||
|
||||
@@ -88,6 +88,7 @@ CUtlString CAppleTool::SignPackage( const char *szIpa, const char *szPassword )
|
||||
Plat_FatalErrorFunc("Couldn't get xtool\n");
|
||||
g_pAppleAuth = (IAppleAuth*)fnFactory(APPLE_AUTH_INTERFACE_VERSION, NULL);
|
||||
g_pAppleAuth->Init();
|
||||
g_pAppleAuth->SubmitLoginData("bratelllo@icloud.com", "");
|
||||
return szIpa;
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#include "target.h"
|
||||
#include "tier0/lib.h"
|
||||
#include "tier0/platform.h"
|
||||
#include "tier1/commandline.h"
|
||||
#include "tier0/commandline.h"
|
||||
#include "tier1/interface.h"
|
||||
#include "tier1/utlstring.h"
|
||||
#include "tier1/utlvector.h"
|
||||
|
||||
@@ -161,7 +161,18 @@ void CClangLinker::LinkFile( CUtlVector<CUtlString> &cmd, const char *szName )
|
||||
|
||||
void CClangLinker::LinkLibraryObject( CUtlVector<CUtlString> &cmd, const char *szName )
|
||||
{
|
||||
cmd.AppendTail(szName);
|
||||
CUtlString szDir = CUtlString(szName).GetDirectory();
|
||||
CUtlString szFileName = CUtlString(szName).GetFileName();
|
||||
if (!V_strncmp(szFileName, "lib",3))
|
||||
szFileName.RemoveHead(3);
|
||||
if (!V_strncmp(szFileName.GetFileExtension(), "so",2))
|
||||
szFileName.RemoveTail(3);
|
||||
if (!V_strncmp(szFileName.GetFileExtension(), "a",1))
|
||||
szFileName.RemoveTail(2);
|
||||
cmd.AppendTail("-L");
|
||||
cmd.AppendTail(szDir);
|
||||
cmd.AppendTail("-l");
|
||||
cmd.AppendTail(szFileName);
|
||||
}
|
||||
|
||||
void CClangLinker::LinkLibrary( CUtlVector<CUtlString> &cmd, const char *szName )
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#include "tier1/utlvector.h"
|
||||
#include "unistd.h"
|
||||
#include "sys/wait.h"
|
||||
#include "tier1/commandline.h"
|
||||
#include "tier0/commandline.h"
|
||||
|
||||
#include "winerunner.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "target.h"
|
||||
#include "tier1/commandline.h"
|
||||
#include "tier0/commandline.h"
|
||||
#include "tier1/utlstring.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include "tier0/lib.h"
|
||||
#include "tier0/mem.h"
|
||||
#include "tier0/platform.h"
|
||||
#include "tier1/commandline.h"
|
||||
#include "tier0/commandline.h"
|
||||
#include "tier1/interface.h"
|
||||
#include "tier1/utlstring.h"
|
||||
#include "tier1/utlvector.h"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#include "runner.h"
|
||||
#include "tier0/platform.h"
|
||||
#include "tier0/commandline.h"
|
||||
#include "tier1/interface.h"
|
||||
#include "tier1/utlstring.h"
|
||||
#include "tier1/utlvector.h"
|
||||
#include "tier1/commandline.h"
|
||||
#include "windows.h"
|
||||
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#include "tier1/utlvector.h"
|
||||
#include "unistd.h"
|
||||
#include "sys/wait.h"
|
||||
#include "tier1/commandline.h"
|
||||
#include "tier0/commandline.h"
|
||||
|
||||
class CWineRunner: public IWineRunner
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user