diff options
| -rw-r--r-- | src/tommath_nim.nim | 3 | ||||
| -rw-r--r-- | tests/test1.nim | 1 | ||||
| -rw-r--r-- | tests/test1.nims | 1 | ||||
| -rw-r--r-- | tommath_nim.nimble | 14 |
4 files changed, 19 insertions, 0 deletions
diff --git a/src/tommath_nim.nim b/src/tommath_nim.nim new file mode 100644 index 0000000..f7de5cc --- /dev/null +++ b/src/tommath_nim.nim @@ -0,0 +1,3 @@ +# tommath_nim +# Copyright Oskari Timperi +# A new awesome nimble package diff --git a/tests/test1.nim b/tests/test1.nim new file mode 100644 index 0000000..ba13c99 --- /dev/null +++ b/tests/test1.nim @@ -0,0 +1 @@ +doAssert(1 + 1 == 2) diff --git a/tests/test1.nims b/tests/test1.nims new file mode 100644 index 0000000..3bb69f8 --- /dev/null +++ b/tests/test1.nims @@ -0,0 +1 @@ +switch("path", "$projectDir/../src")
\ No newline at end of file diff --git a/tommath_nim.nimble b/tommath_nim.nimble new file mode 100644 index 0000000..440dd7a --- /dev/null +++ b/tommath_nim.nimble @@ -0,0 +1,14 @@ +# Package + +version = "0.1.0" +author = "Oskari Timperi" +description = "A new awesome nimble package" +license = "MIT" +srcDir = "src" + +# Dependencies + +requires "nim >= 0.18.0" + +before install: + exec "git clone --branch v1.0.1 https://github.com/libtom/libtommath.git" |
