-
Clone the repository:
git clone --recursive https://github.com/ggjorven/Pulse.git cd Pulse
-
Navigate to the scripts folder:
cd scripts/windows
-
Choose what you want it build to:
- Visual Studio 17 2022:
./gen-vs2022.bat
- MinGW make files:
./gen-make.bat
- Visual Studio 17 2022:
-
Clone the repository:
git clone --recursive https://github.com/ggjorven/Pulse.git cd Pulse
-
Navigate to the scripts folder:
cd scripts/linux
-
(Optional) If you haven't already installed the premake5 build system you can install it like this:
chmod +x install-premake5.sh ./install-premake5.sh
-
Generate make files:
chmod +x gen-make.sh ./gen-make.sh
-
Clone the repository:
git clone --recursive https://github.com/ggjorven/Pulse.git cd Pulse
-
Navigate to the scripts folder:
cd scripts/macos
-
(Optional) If you haven't already installed the premake5 build system you can install it like this:
chmod +x install-premake5.sh ./install-premake5.sh
-
Generate make files:
chmod +x gen-xcode.sh ./gen-xcode.sh
-
Visual Studio 17 2022:
-
Navigate to the root of the directory
-
Open the Pulse.sln file
-
Start building in your desired configuration
-
Build files can be in the bin/%Config%-windows/ folder.
-
(Optional) Open a terminal and run the Sandbox project:
./Sandbox.exe
-
-
MinGW Make:
-
Navigate to the root of the directory
-
Open a terminal.
-
Call make with desired configuration (debug, release or dist):
make config=release
-
Build files can be in the bin/%Config%-linux/ folder.
-
(Optional) Open a terminal and run the Sandbox project:
./Sandbox.exe
-
-
Navigate to the root of the directory
-
Open a terminal
-
Call make with desired configuration (debug, release or dist):
make config=release
-
Build files can be in the bin/%Config%-linux/ folder.
-
(Optional) Open a terminal and run the Sandbox project:
chmod +x Sandbox ./Sandbox
-
Navigate to the root of the directory
-
Open the Pulse.xcworkspace file
-
Start building in your desired configuration
-
Build files can be in the bin/%Config%-macosx/ folder.
-
(Optional) Open a terminal and run the Sandbox project:
chmod +x Sandbox ./Sandbox