passes nimble check

This commit is contained in:
ThatBen 2024-05-10 11:00:51 +02:00
parent b5301c2084
commit 85880f53da
3 changed files with 5 additions and 4 deletions

View File

@ -21,7 +21,7 @@ rm -Rf "${sourceDir}/benchmarks"
rm "${sourceDir}/util/testutil.cc" rm "${sourceDir}/util/testutil.cc"
# Prelude: # Prelude:
cat "${root}/prelude.nim" > "${output}" cat "${root}/leveldb/prelude.nim" > "${output}"
echo >> "${output}" echo >> "${output}"
# assemble files to be compiled: # assemble files to be compiled:

View File

@ -5,9 +5,10 @@ author = "Michał Zieliński"
description = "LevelDB wrapper for Nim" description = "LevelDB wrapper for Nim"
license = "MIT" license = "MIT"
bin = @["leveldbtool"] bin = @["leveldbtool"]
installExt = @["nim", "cc", "h", "c", "cpp"] # installExt = @["nim", "cc", "h", "c", "cpp"]
skipDirs = @["tests"] installDirs = @["build", "leveldb", "vendor"]
installFiles = @["leveldb.nim"]
#"leveldbtool.nim", "prelude.nim"]
# Dependencies # Dependencies