fractorium/Data/BuildGuideQtCreator.md

185 lines
5.0 KiB
Markdown
Raw Normal View History

2016-03-03 21:55:49 -05:00
#Build Guide for Fractorium Using MSVC2013 or Qt Creator (64 bit)
##Tools
###git
2016-03-01 20:58:34 -05:00
Install [git](https://git-scm.com/downloads).
2016-03-03 21:55:49 -05:00
###Visual Studio
2016-03-01 20:58:34 -05:00
Install [Microsoft Visual Studio 2013 or later](https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx), then install the latest updates.
2016-03-03 21:55:49 -05:00
###Qt
Install Qt for Windows 64-bit (VS 2013) 5.5.x (http://www.qt.io/download/).
Add system environment variable named `QTPATH` and point it to the location of the Qt binaries folder. On a default install, this will be something like:
`C:\Qt\Qt5.5.1\5.5\msvc2013_64\bin`
2016-03-03 21:55:49 -05:00
###Wix
To build the installer, you must have Wix installed. If you are unconcerned with it, you can skip this step and just dismiss the warning that shows when opening the solution later. It's recommended you ignore the installer since official builds are provided on this page.
##Obtaining source
###This project
Open up the Visual Studio x64 Native Tools Command Prompt.
2016-03-01 20:58:34 -05:00
Create a new folder in your development area named fractorium:
2016-03-01 20:58:34 -05:00
`mkdir fractorium`
`cd fractorium`
`git clone https://github.com/mfeemster/fractorium.git`
2016-03-03 21:55:49 -05:00
###Prerequisites
2016-03-01 20:58:34 -05:00
There are six prerequisite dependencies. Two of them must be downloaded manually:
[libjpeg](http://www.ijg.org/)
2016-03-03 21:55:49 -05:00
[tbb](https://www.threadingbuildingblocks.org/download) (Intel provides executable only releases in addition to open source releases. You must get the open source release)
2016-03-01 20:47:59 -05:00
Extract them into the folder you created such that they are arranged like so:
2016-03-01 20:47:59 -05:00
```
[fractorium]
├─libjpeg
├─tbb
```
2016-03-01 20:58:34 -05:00
Go into the fractorium folder and run this script which will get the rest of the prerequisites from git and build them:
2016-03-01 21:10:37 -05:00
`cd fractorium`
`makedeps.bat`
2016-03-01 20:58:34 -05:00
This will download and build `glm libpng libxml zlib`. You will have a folder structure like this:
```
2016-03-03 21:55:49 -05:00
[fractorium]
2016-03-01 20:47:59 -05:00
├─glm
├─libjpeg
├─libpng
├─libxml2
├─tbb
└─fractorium
2016-03-01 21:10:37 -05:00
2016-03-01 20:58:34 -05:00
├─Deps
├─libjpeg.lib
├─libpng.lib
├─libxml2.lib
├─libxml2.dll
├─tbb.dll
├─tbb.lib
├─zlib.lib
```
2016-03-03 21:55:49 -05:00
##Building with Qt Creator or Visual Studio
###Begin build with Qt Creator:
2016-03-01 21:10:37 -05:00
Open the Qt Project `fractorium/main.pro` using Qt Creator with the default config of *Desktop Qt [version] MSVC2013 64bit*
Select *shadow build* in *Edit build configuration* for both *Debug* and *Release*
2016-03-01 21:10:37 -05:00
Switch to *Release* configuration for all projects and build main.pro.
2016-03-01 21:24:21 -05:00
The outputs will be placed in `fractorium/Bin/release` several minutes later if no error occurs.
2016-03-03 21:55:49 -05:00
###Begin build with Visual Studio:
####Visual Studio Qt Addon
Install the [Visual Studio Qt Addon](http://www.qt.io/download/).
Run Visual Studio and verify there is a menu item named Qt5. Click on it and click Qt Options.
Add a new Qt version to the list with the exact name of "Qt 5.5", and set its path to be one level higher than `$QTPATH`, which will be something like:
`C:\Qt\Qt5.5.1\5.5\msvc2013_64`
The name "Qt 5.5" must match exactly and this step must be completed before the Fractorium solution is opened. If not, the Qt add-in will completely ruin all solution and project files that use Qt.
Set the default version to the newly created Qt version and click Ok.
2016-03-01 21:00:02 -05:00
Open the file Fractorium.sln under Builds/MSVC/2013
Set the configuration to release, and build all.
2016-03-03 21:55:49 -05:00
###Outputs
2016-03-01 21:24:21 -05:00
The outputs will be the same as with Qt Creator and will be placed in:
2016-03-01 21:00:02 -05:00
2016-03-01 21:24:21 -05:00
`fractorium/Bin/x64/Release`
2016-03-01 21:00:02 -05:00
Regardless of the IDE chosen, the output folder will have these contents:
```
2016-03-03 21:55:49 -05:00
dark.qss
Ember.dll
Ember.exp
Ember.lib
emberanimate.exe
EmberCL.dll
EmberCL.exp
EmberCL.lib
embergenome.exe
emberrender.exe
2016-03-03 21:55:49 -05:00
flam3-palettes.xml
fractorium.exe
2016-03-03 21:55:49 -05:00
libxml2.dll
tbb.dll
```
2016-03-01 21:24:21 -05:00
Double click fractorium.exe to run it, and use the command line to run the others.
2016-03-01 20:47:59 -05:00
To run it on a machine which does not have Qt installed, put the .exe and .dll files above along with these files together in one folder
2016-03-01 21:00:02 -05:00
```
Qt5.5.1\5.5\msvc2013_64\bin\Qt5Core.dll
Qt5.5.1\5.5\msvc2013_64\bin\Qt5Gui.dll
2016-03-01 20:47:59 -05:00
Qt5.5.1\5.5\msvc2013_64\bin\Qt5Widgets.dll
Qt5.5.1\5.5\msvc2013_64\plugins\platforms\qwindows.dll (put in folder "platforms")
```
2016-03-01 20:47:59 -05:00
To run on a computer without Visual Studio 2013, these files also need to be in the folder:
```
MSVC2013\VC\redist\x64\Microsoft.VC120.CRT\msvcp120.dll
MSVC2013\VC\redist\x64\Microsoft.VC120.CRT\msvcr120.dll
MSVC2013\VC\redist\x64\Microsoft.VC120.CRT\vccorlib120.dll
```
2016-03-03 21:55:49 -05:00
or you can install [Visual C++ Redistributable Packages for Visual Studio 2013 (64 bit)](https://www.microsoft.com/en-us/download/details.aspx?id=40784)
2016-03-01 21:10:37 -05:00
##Final file structure for distribution
```
[YOUR FOLDER]
2016-03-03 21:55:49 -05:00
├─ dark.qss
├─ Ember.dll
├─ emberanimate.exe
├─ EmberCL.dll
├─ embergenome.exe
├─ emberrender.exe
├─ flam3-palettes.xml
├─ fractorium.exe
├─ libxml2.dll
├─ Qt5Core.dll
├─ Qt5Gui.dll
├─ Qt5OpenGL.dll
├─ Qt5Widgets.dll
├─ tbb.dll
├─ vccorlib120.dll (optional)
├─ msvcp120.dll (optional)
├─ msvcr120.dll (optional)
└─platforms
2016-03-03 21:55:49 -05:00
├─qwindows.dll
```