wie macht man einen github source code in eine dll?


03.10.2023, 20:45

für sea of thieves

1 Antwort

Das hängt vom verwendeten Buildsystem ab. Unter Linux sind solche Dinge meistens sehr einfach: Man installiert alle Abhängigkeiten und ruft dann "make" auf. Unter Windows ist es ein wenig aufwändiger, da ist meistens Visual Studio im Spiel.

Was steht denn in der README?

Woher ich das weiß:Studium / Ausbildung – Ich studiere Informatik
MC0Adrian 
Fragesteller
 02.10.2023, 19:45

# SeaOfChoros

Sea Of Thieves Utility.

Based on [Original SoT-Hook]https://github.com/guttir14/SoT-Hook).

## Installation

- Clone this repo.

- Get latest [HookLib & Zydis libs]https://github.com/HoShiMin/HookLib).

```

git clone https://github.com/HoShiMin/HookLib

cd HookLib

git submodule update --init --recursive

```

- Compile HookLib in 'Release' - x64 mode.

- Move HookLib\bin\Um\x64\Release\HookLib.lib and HookLib\Zydis\msvc\bin\ReleaseX64\Zydis.lib to SeaOfChoros\lib\HookLib.

- Compile SeaOfChoros in 'Release' - x64 mode.

0
TheQ86  02.10.2023, 19:51
@MC0Adrian

Du brauchst Visual Studio um das Projekt zu kompillieren.

0
MC0Adrian 
Fragesteller
 02.10.2023, 20:00
@TheQ86

habe ich was mache ich in visual studio?

0
DummeStudentin  02.10.2023, 20:16
@MC0Adrian

Das Projekt öffnen und auf den "Compile" Button drücken.

Sorry, mehr Ahnung habe ich von Visual Studio nicht. Ich verwende primär make und gcc.

1