You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
356 B
13 lines
356 B
4 years ago
|
@rem Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||
|
@rem file Copyright.txt or https://cmake.org/licensing for details.
|
||
|
|
||
|
call \msvc.bat && @echo on || exit /b
|
||
|
set PATH=C:\wix;C:\ninja;%PATH%
|
||
|
cd \cmake\src\cmake-build && (
|
||
|
for %%p in (%*) do (
|
||
|
bin\cpack -G %%p
|
||
|
)
|
||
|
) && ^
|
||
|
mkdir \out && ^
|
||
|
move cmake-*-win* \out
|