From f3635a98718ac6cad92f1e7d8aae3aa7cf2f985f Mon Sep 17 00:00:00 2001 From: Joseph Davies Date: Sun, 12 Oct 2014 14:40:15 -0700 Subject: [PATCH] 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. --- prepare_env.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare_env.ps1 b/prepare_env.ps1 index fbdcb38a..31d515af 100644 --- a/prepare_env.ps1 +++ b/prepare_env.ps1 @@ -27,7 +27,7 @@ if (!(Test-Path -PathType Container devlibs)) { } 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") { Write-Host ""