summaryrefslogtreecommitdiffstats
path: root/cmake/README.md
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2018-01-01 13:40:09 +0100
committermanuel <manuel@mausz.at>2018-01-01 13:40:09 +0100
commit4830f27a40323fe859dc166337a2b861877b7121 (patch)
tree39e9f712a5415ec0026c3914f4bf600b2f679287 /cmake/README.md
parent0afb1d4d51973cf52973617c92236d851a039d31 (diff)
downloadkodi-pvr-build-4830f27a40323fe859dc166337a2b861877b7121.tar.gz
kodi-pvr-build-4830f27a40323fe859dc166337a2b861877b7121.tar.bz2
kodi-pvr-build-4830f27a40323fe859dc166337a2b861877b7121.zip
sync with upstream
Diffstat (limited to 'cmake/README.md')
-rw-r--r--cmake/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmake/README.md b/cmake/README.md
index 81c0517..0848f2d 100644
--- a/cmake/README.md
+++ b/cmake/README.md
@@ -119,12 +119,30 @@ cmake -G "Visual Studio 14" <KODI_SRC>
119cmake --build . --config "Debug" # or: Build solution with Visual Studio 119cmake --build . --config "Debug" # or: Build solution with Visual Studio
120Debug\kodi.exe 120Debug\kodi.exe
121``` 121```
122
123Building on a x64 cpu can be improved, if you're on a cmake version > 3.8:
124```
125cmake -G "Visual Studio 14" -T host=x64 <KODI_SRC>
126cmake --build . --config "Debug" # or: Build solution with Visual Studio
127Debug\kodi.exe
128```
129This will choose the x64 toolset, as windows uses the x32 toolset by default.
130
122#### Build for x64 131#### Build for x64
123``` 132```
124cmake -G "Visual Studio 14 Win64" <KODI_SRC> 133cmake -G "Visual Studio 14 Win64" <KODI_SRC>
125cmake --build . --config "Debug" # or: Build solution with Visual Studio 134cmake --build . --config "Debug" # or: Build solution with Visual Studio
126Debug\kodi.exe 135Debug\kodi.exe
127``` 136```
137
138Building on a x64 cpu can be improved, if you're on a cmake version > 3.8:
139```
140cmake -G "Visual Studio 14 Win64" -T host=x64 <KODI_SRC>
141cmake --build . --config "Debug" # or: Build solution with Visual Studio
142Debug\kodi.exe
143```
144This will choose the x64 toolset, as windows uses the x32 toolset by default.
145
128You can always check ``cmake --help` to see which generators are available and how to call those. 146You can always check ``cmake --help` to see which generators are available and how to call those.
129 147
130#### Windows installer generation 148#### Windows installer generation