-
Notifications
You must be signed in to change notification settings - Fork 0
Powering Up The Engine
Nikola Kostadinov edited this page Nov 8, 2022
·
5 revisions
In this page we will guide you how to install and set up the Dirac Engine. There are two ways to that. First the easy and conventional way:
- Go to the releases page.
- Choose your desired version of the engine. Latest is recommended.
- Download the
dirac-<version>.zip
file. - Unzip the file wherever you like. Don't forget the path.
- Copy the
./Dirac
and./bin
directories from where you installed Dirac - Open the directory of your c++ project.
- Paste
./Dirac
and./bin
in your c++ project. - When compiling the project don't forget to append
bin\dirac.dll
to the make command. Example:g++ -o bin/main src/main.cpp bin\dirac.dll
The second way to install and set up Dirac is to clone the source code and compile it. After you have cloned the Dirac repository make the library with make dirac
command. Then copy everything from ./include
and ./bin
to your c++ project. When compiling your project don't forget to append bin\dirac.dll
to the make command.