Loading...
To compile your project, open up the solution, right-click the INSTALL project, and click 'build'. You only need to do this the first time.
The INSTALL project not only compiles the engine, but also installs the BaseGame template files in your project.
The engine executable will be generated in the project's game folder (i.e. My Projects/<project name>/game/<project name>.exe).
Change "Visual Studio 17" to the appropriate generator for your system and "MyGame" to your projectName
If you don't have access to a Linux machine, or you prefer not to install libraries and software in your current Linux machine, building Torque inside a virtual machine is a great way to create binaries that you can redistribute. You can create your own virtual machine environment by following the steps on this page for Linux as usual, or you can use Vagrant to create reproducible VMs that you manage with the command-line. See the Vagrant tutorial for more details.
Still in the same folder, run either make, ninja, or your build tool of preference.
The build may take some time, so go and frolic in the outdoors or something while you wait. When you return, you should see that the final executable was linked, and is now awaiting you in My\ Projects/LinuxTest/game.
You can run make install to copy the template files from the template you specified into your project's folder.
https://www.youtube.com/watch?v=ISbuSTgTQKI
We need to configure qtCreator.
Open editor
MenuBar -> Tools -> Options
Build & Run -> CMAKE
Click on Prefered Ninja Generator
Close Options.
MenuBar -> File -> Open File or Project
Go to Torque3D root path
Select CMakeList.txt
We need to configure project. Select your path for CMAKE cache.
Click Configure Project
After this we get the normal CMAKE error message
We need to start CMAKE GUI to configure
When finished, click Configuration button
Return to qtCreator
MenuBar -> Build -> Run CMake
After this we have qtCreator configured for build
If you have some problem, it's very important to delete CMakeLists.txt.user file on Torque3D root path.
You need to use INSTALL project for copy Template files. Note: post-4.0.3 the CMake generation will install the template files your you, so you can just use the application project itself.
Go to Project view
On Build Steps, Make: Ninja -> click Details
You see a list of projects you can add to build
Add INSTALL project
Return to Edit view
MenuBar-> Build -> Build All
After the first build, is possible you prefer to deactivate Install project to avoid override your files.
Note: it has been reported that in Fedora, you may need to change the default 'Make: ninja' command to ninja-build for both 'Build Steps' and 'Clean Steps'.
Loading...