summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRama Krishnan Raghupathy <ramarag@microsoft.com>2015-03-06 18:15:55 -0800
committerRama Krishnan Raghupathy <ramarag@microsoft.com>2015-03-06 18:15:55 -0800
commit2a1f5a35ad3678f9175a0c937eeb07a29c65ba8a (patch)
treeb0a65a0a4785e4deb39ec1eed8eba4ddff486b79 /src
parent182d4e2ef3bea406de49147bb732767fa6190f93 (diff)
downloadcoreclr-2a1f5a35ad3678f9175a0c937eeb07a29c65ba8a.tar.gz
coreclr-2a1f5a35ad3678f9175a0c937eeb07a29c65ba8a.tar.bz2
coreclr-2a1f5a35ad3678f9175a0c937eeb07a29c65ba8a.zip
With This change the tests build all the native components first and then builds the managed components. The managed components can refer to the native projects by the following construct in the .csproj
<ProjectReference Include="CMakeLists.txt"> [tfs-changeset: 1427574]
Diffstat (limited to 'src')
-rw-r--r--src/pal/tools/gen-buildsys-win.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pal/tools/gen-buildsys-win.bat b/src/pal/tools/gen-buildsys-win.bat
index ac51caa0e0..6dc56585fa 100644
--- a/src/pal/tools/gen-buildsys-win.bat
+++ b/src/pal/tools/gen-buildsys-win.bat
@@ -9,7 +9,7 @@ if NOT %argC%==1 GOTO :USAGE
if %1=="/?" GOTO :USAGE
setlocal
-set basePath=%1
+set basePath=%~dp0
:: remove quotes
set "basePath=%basePath:"=%"
:: remove trailing slash
@@ -21,7 +21,7 @@ if defined CMakePath goto DoGen
for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy RemoteSigned "& .\probe-win.ps1"') do %%a
:DoGen
-"%CMakePath%" "-DCMAKE_USER_MAKE_RULES_OVERRIDE=%basePath%\src\pal\tools\windows-compiler-override.txt" -G "Visual Studio 12 2013 Win64" %1
+"%CMakePath%" "-DCMAKE_USER_MAKE_RULES_OVERRIDE=%basePath%\windows-compiler-override.txt" -G "Visual Studio 12 2013 Win64" %1
endlocal
GOTO :DONE