Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Alain De Vos via Digitalmars-d-learn
dub run raylib-d:install solved the problem. Thanks

Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Steven Schveighoffer via Digitalmars-d-learn
On Saturday, 30 November 2024 at 02:16:35 UTC, Alain De Vos wrote: After installing raylib library on Debian , https://github.com/raysan5/raylib/releases Running "dub run" i get now the error : ``` dub run Fetching raylib-d 5.5.1 (getting selected version)... Performing "debug" build using /us

Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Steven Schveighoffer via Digitalmars-d-learn
On Saturday, 30 November 2024 at 01:28:44 UTC, Alain De Vos wrote: vscode no longer complains. But "dub run" gives, ``` dub run Starting Performing "debug" build using /usr/bin/dmd for x86_64. Up-to-date raylib-d 5.5.1: target for configuration [library] is up to date. Building my

Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Alain De Vos via Digitalmars-d-learn
After installing raylib library on Debian , https://github.com/raysan5/raylib/releases Running "dub run" i get now the error : ``` dub run Fetching raylib-d 5.5.1 (getting selected version)... Performing "debug" build using /usr/bin/gdc for x86_64. raylib-d 5.5.1: building configuration "librar

Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Alain De Vos via Digitalmars-d-learn
I see i don't have the raylib library installed. And there is none available on redcore-linux(a gentoo derivative). Gone try debian now.

Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Alain De Vos via Digitalmars-d-learn
vscode no longer complains. But "dub run" gives, ``` dub run Starting Performing "debug" build using /usr/bin/dmd for x86_64. Up-to-date raylib-d 5.5.1: target for configuration [library] is up to date. Building myprogram ~master: building configuration [application] Linking

Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Alain De Vos via Digitalmars-d-learn
On Friday, 29 November 2024 at 22:35:14 UTC, Steven Schveighoffer wrote: On Friday, 29 November 2024 at 22:02:23 UTC, Alain De Vos wrote: On Friday, 29 November 2024 at 21:37:48 UTC, Alain De Vos wrote: I can do "dub add raylib-d" but i have no clue to program a simple moving circle. Followin

Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Steven Schveighoffer via Digitalmars-d-learn
On Friday, 29 November 2024 at 22:02:23 UTC, Alain De Vos wrote: On Friday, 29 November 2024 at 21:37:48 UTC, Alain De Vos wrote: I can do "dub add raylib-d" but i have no clue to program a simple moving circle. Following program has an import error ```d import std.stdio: writeln; import ra

Re: raylib-d how to program a simple moving circle.

2024-11-29 Thread Alain De Vos via Digitalmars-d-learn
On Friday, 29 November 2024 at 21:37:48 UTC, Alain De Vos wrote: I can do "dub add raylib-d" but i have no clue to program a simple moving circle. Following program has an import error ``` import std.stdio: writeln; import raylib; //Error void main() { validateRaylibBinding();

raylib-d how to program a simple moving circle.

2024-11-29 Thread Alain De Vos via Digitalmars-d-learn
I can do "dub add raylib-d" but i have no clue to program a simple moving circle.