On Wednesday, 3 January 2018 at 23:51:23 UTC, Craig Dillabaugh
wrote:
Looks like you are up and running with Adam's stuff, but if you
wanted to use the sqlite3 library I would suggest you use 'dub'
to do the build as sqlite3 is in code.dlang.org. An example
form my own project:
dub.sdl
---------------------------------------------------------
name "blah"
description "An application that uses sqlite3 library.."
authors "Craig Dillabaugh"
copyright "Copyright © 2017, Craig Dillabaugh"
license "Whatever"
dependency "sqlite3" version="~>1.0.0"
now, i can run this too (the same way Adam noted).
thank you all ...