nim-ffi/ffi.nimble
Ashis Kumar Naik 70ed910d1c
fixed indentation error
Signed-off-by: Ashis Kumar Naik <ashishami2002@gmail.com>
2025-12-12 00:25:59 +05:30

23 lines
482 B
Nim

# ffi.nimble
version = "0.1.0"
author = "Institute of Free Technology"
description = "FFI framework with custom header generation"
license = "MIT or Apache License 2.0"
packageName = "ffi"
requires(
"nim >= 2.2.4",
"chronos"
)
# Source files to include
# srcDir = "src"
# installFiles = @["src/ffi.nim", "mylib.h"]
# # 💡 Custom build step before installation
# before install:
# echo "Generating custom C header..."
# exec "nim r tools/gen_header.nim"