1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-22 13:20:05 +00:00

Don't build tools for which the script won't prepare the system.

Our current simple instructions do not include any mention of, nor does the current devlibs.zip contain, Qt5 (required for building Tools) or PyGTK (required to build resource.dat).  This removes those projects by default for people using this script.
This commit is contained in:
2014-10-12 14:40:15 -07:00
parent 75bf2965d3
commit f3635a9871

View File

@ -27,7 +27,7 @@ if (!(Test-Path -PathType Container devlibs)) {
} }
Write-Host "Running CMake to configure build system... " Write-Host "Running CMake to configure build system... "
cmake -DCMAKE_INSTALL_PREFIX=devlibs -G "Visual Studio 12" .. cmake -DCMAKE_INSTALL_PREFIX=devlibs -DPLASMA_BUILD_TOOLS=OFF -DPLASMA_BUILD_RESOURCE_DAT=OFF -G "Visual Studio 12" ..
if ($Host.Name -eq "ConsoleHost") { if ($Host.Name -eq "ConsoleHost") {
Write-Host "" Write-Host ""