-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Windows project manager building instructions (#122)
* Add Windows project manager building instructions * Apply project manager instructions from Linux setup
- Loading branch information
1 parent
3cbe6d3
commit d93de7c
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,17 @@ $ git clone [email protected]:sdslabs/Rubeus.git | |
``` | ||
|
||
## Initialising CMake | ||
Use the ProjectManager.exe GUI to run the relevant cmake as show in [this tutorial](https://github.com/sdslabs/Rubeus/wiki/Making-a-ping-pong-game#2-setting-up-project-manager) | ||
First build the Project Manager | ||
1. Navigate to Rubeus' cloned repository | ||
2. Run `cmake -D_PROJECTMANAGER=1 ./` | ||
_Note: Rubeus uses an in-source CMake build_ | ||
|
||
In case you want to build both Rubeus Engine and Project Manager in one go without the GUI | ||
Run `cmake -D_DEV=1 ./` | ||
_Ignore warnings related to unused variables_ | ||
_Note: The engine would be built with the previous project it was built or in case of the first run, with the ping pong example game_ | ||
|
||
Use the ProjectManager.exe GUI as show in [this tutorial](https://github.com/sdslabs/Rubeus/wiki/Making-a-ping-pong-game#2-setting-up-project-manager) | ||
|
||
## Setting up Rubeus source in Visual Studio 2017 | ||
1. Open the newly generated `RubeusCore.sln` in the repository root folder inside Visual Studio. Right click on `RubeusCore` in Solution Explorer and select `Set as StartUp project`. [Screenshot](https://imgur.com/a/xadxwsG) | ||
|