Nimble package init
This commit is contained in:
parent
1f18880b14
commit
2d636d636d
3 changed files with 22 additions and 0 deletions
7
protobuf_serialization.nim
Normal file
7
protobuf_serialization.nim
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# This is just an example to get you started. A typical library package
|
||||
# exports the main API in this file. Note that you cannot rename this file
|
||||
# but you can remove it if you wish.
|
||||
|
||||
proc add*(x, y: int): int =
|
||||
## Adds two files together.
|
||||
return x + y
|
||||
14
protobuf_serialization.nimble
Normal file
14
protobuf_serialization.nimble
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Joey Yakimowich-Payne"
|
||||
description = "Protobuf implementation compatible with the nim-serialization framework."
|
||||
license = "MIT"
|
||||
srcDir = "src"
|
||||
skipDirs = @["tests"]
|
||||
|
||||
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 1.0.6"
|
||||
1
tests/config.nims
Normal file
1
tests/config.nims
Normal file
|
|
@ -0,0 +1 @@
|
|||
switch("path", "$projectDir/../src")
|
||||
Loading…
Add table
Add a link
Reference in a new issue