1
0
mirror of https://github.com/open-simh/simh.git synced 2026-02-21 06:56:21 +00:00

CMake build infrastructure II (#53)

* 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.
This commit is contained in:
B. Scott Michel
2023-05-17 17:18:42 -07:00
committed by GitHub
parent 793149d1bd
commit 8b14bb69be
98 changed files with 13549 additions and 23 deletions

10
.gitignore vendored
View File

@@ -1,4 +1,5 @@
.git-commit-id
.git-commit-id.h
#ignore thumbnails created by windows
Thumbs.db
#ignore Desktop Services Store created by OSX
@@ -38,6 +39,10 @@ _ReSharper*/
*#
BIN/
ipch/
# Visual Studio, Visual Code directories:
.vscode/
.vs/
build/
# We only care about specific files in the Visual Studio Projects
# folder. Things which are there on the fly to support debugging
# or other things we don't want git to manage.
@@ -49,3 +54,8 @@ Visual Studio Projects/~AutoRecover.*
!Visual Studio Projects/0ReadMe_Projects.txt
**/*.code-workspace
**/.vscode/
# Visual Studio artifacts in CMake mode
out/
CMakeSettings.json
## Staging area for cmake install (default install prefix)
SIMH-install