1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-05-05 23:45:14 +00:00

SCP: Added support for CMAKE.

This commit is contained in:
Richard Cornwell
2024-03-12 12:35:07 -04:00
parent 2feef0b36f
commit 40a64324b7
61 changed files with 9120 additions and 0 deletions

9
cmake/simgen/utils.py Normal file
View 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