mirror of
https://github.com/open-simh/simh.git
synced 2026-05-04 23:25:46 +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:
9
cmake/simgen/utils.py
Normal file
9
cmake/simgen/utils.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import re
|
||||
|
||||
|
||||
def emit_debug(dval, level, msg):
|
||||
if dval >= level:
|
||||
print(msg)
|
||||
|
||||
def do_debug(dval, level, act):
|
||||
pass
|
||||
Reference in New Issue
Block a user