This repository has been archived by the owner on Nov 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
README.txt
115 lines (79 loc) · 3.28 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
REQUIREMENTS: CMake 2.8 and Qt 5 and XCode/QtCreator/gcc/mingw/VisualStudio/etc..
INSTRUCTIONS
------------
WINDOWS
-------
Prerequisites
# install cmake from
http://www.cmake.org/cmake/resources/software.html
# install qt5 from (for this exercise we used visual studio 2012 x64, but older version should work fine...)
http://qt-project.org/downloads
# install visual studio or qt creator
WINDOWS - MSVC - THE GUI WAY - PREFERED
---------------------------------------
Prerequisites
# Having a Visual Studio installed (MSVC10 or UP)
Building and Running an Exercise
# Start cmake-gui with batch or manually (but provide QT_DIR and make sure the Qt binaries are on the path)
# Open CMakeLists.txt with cmake-gui
# Specify path to build binaries (recommended in extra build directory) -> "build" folder
# Press configure and generate
# Open solution with batch
# setup working directory of exercise executable to ".." for each configuration you want to start your program in
# compile and run as required...
WINDOWS - QT-CREATOR
--------------------
Prerequisites
# Use the qt creator 2.4 or newer (at best, the one that comes with qt 5.0.2)
# Set the path for the CMake executable in Tools > Options > Build & Run > CMake.
# Now you should be able to open CMakeLists.txt files (if not check http://doc.qt.digia.com/qtcreator-2.4/creator-project-cmake.html)
NOTE: you need a CDB if you want to compile with MSVC... http://msdn.microsoft.com/de-de/windows/hardware/hh852363
Installing the Debugging Tools should suffice.
Building and Running an Exercise
> File > Open File or Project
> select the CMakeLists.txt
> specify Build Directory
> Press Run-CMake, then finish
> Specify Working Directory via Projects > Run > Working Directory (see http://doc.qt.digia.com/qtcreator-2.3/creator-run-settings.html)
to point to exercise folder, not the build folder
> Compile (e.g. with [Ctrl] + [R])
WINDOWS - NMAKE - COMMAND LINE
-----------------------------
Prerequisites
# Cmake is available via command line
# You habe nmake installed and you can use ae.g. Visual Studio Command Promt
Building and Running an Exercise
> set PATH=%PATH%;"C:\Qt\5.0.2\qtbase\bin\"
> mkdir build
> cd build
> cmake -DCMAKE_PREFIX_PATH="C:\Qt\5.0.2\qtbase\lib\cmake" -G "NMake Makefiles" .. # this worked for us... (perhaps you need to specify platform/compiler...)
> nmake
> cd ..
> set QT_DIR=C:\Qt\5.0.2
> set PATH=%PATH%;%QT_DIR%\qtbase\bin;
> ./build/exercise1
LINUX - Tested on Ubuntu 12.10 x64
----------------------------------
Prerequisites
# install cmake, this should give you 2.8.9 or above ...
# if version is below you probably need to update to a newer version or compile cmake for youself
> sudo apt-get install cmake
> download qt 5.0.2
# suppose the filename is qt.run (replace appropriately)
# in downloaded folder do:
> chmod u+x qt.run
> ./qt.run
Building and Running an Exercise
# in your cg1 exercise1 (or exercise#) source folder do:
> mkdir build
> cd build
> cmake -DCMAKE_PREFIX_PATH="/opt/Qt5.0.2/5.0.2/gcc_64" .. # this worked for us...
> make
> cd ..
> ./build/exercise1
MAC
---
Gathering Requirements
TODO
Building and Running an Exercise
TODO