* CMake build infrastructure The squashed commit that builds and packages releases for the SIMH simulator suite with CMake, version 3.14 or newer. See README-CMake.md for documentation.
14 lines
375 B
PowerShell
14 lines
375 B
PowerShell
## Make looking at divergence from simh/master easier...
|
|
|
|
$excludes = @(
|
|
"/*CMakeLists.txt",
|
|
"/.gitignore",
|
|
"/Visual Studio Projects/",
|
|
"/build_*.bat",
|
|
"/cmake/",
|
|
"/PDP8/tests/diags/*.pal",
|
|
"/PDP8/tests/diags/*.txt",
|
|
"/appveyor.yml"
|
|
) | % { "`":!" + $_ + "`"" }
|
|
|
|
git diff --ignore-space-at-eol simh/master HEAD -- ${excludes}
|