This is a project template for D and SFML multimedia library with DUB. It does static linking with libraries.
Check out the dub.json
for configuration example.
D uses the bindbc-sfml packages. It is handled by DUB automatically. Please, ensure you have SFML
library installed on your system.
sudo apt install libsfml-dev libcsfml-dev
brew install sfml csfml
- Download CSFML library for Windows.
- Copy all
lib/mvsc/*.lib
files to your working directory along sidesource
anddub.json
- Copy all
bin/*.dll
binaries to your executable folder. In this case it isbin
along sidesource
anddub.json
// dub.json
"dependencies": {
"bindbc-sfml": "~>1.0.2"
},
"versions": [
"BindSFML_Static", "SFML_Audio", "SFML_Graphics", "SFML_Network", "SFML_System", "SFML_Window"
],
"libs": [
"csfml-audio", "csfml-graphics", "csfml-network", "csfml-system", "csfml-window"
]
// dub.sdl
dependency "bindbc-sfml" version="~>1.0.2"
versions "BindSFML_Static" "SFML_Audio" "SFML_Graphics" "SFML_Network" "SFML_System" "SFML_Window"
libs "csfml-audio" "csfml-graphics" "csfml-network" "csfml-system" "csfml-window"
dub --build=release
--build=release
is optional. Simply dub
will compile and run the project automatically.
All code is licensed under BSL software license.