Hi,

I have a problem building an application that uses the vibe.d framework. If I follow the First steps tutorial in the documentation, I can successfully run the server and access it via a browser. However when I try to build my app without the 'vibe' command, I hit the wall hard. What parameters does the dmd need to successfully build an app that uses vibe.d?

App:
import vibe.vibe;
void main() {}

System:
Debian linux
DMD 2.060
vibe.d downloaded via apt

Errors:
server.o:(.data+0x3e0): undefined reference to _D4vibe4vibe12__ModuleInfoZ'<br>server.o: In function D4vibe4core14connectionpool67T16LockedConnectionTC4vibe2db5mongo10connection15MongoConnectionZ16LockedConnection10postblitMFZv':
server.d:(.text.
D4vibe4core14connectionpool67T16LockedConnectionTC4vibe2db5mongo10connection15MongoConnectionZ16LockedConnection10postblitMFZv+0x30): undefined reference to `D4vibe4core14connectionpool8_assertFiZv'
...
collect2: ld returned 1 exit status

Thanks,
Martin