ChanServ changed the topic of #wayland to: https://wayland.freedesktop.org | Discussion about the Wayland protocol and its implementations, plus libinput | register your nick to speak
bindu has quit [Quit: leaving]
hardening_ has quit [Ping timeout: 480 seconds]
bindu has joined #wayland
Brainium has quit [Quit: Konversation terminated!]
rv1sr has quit []
Szadek has joined #wayland
Net147_ has quit []
Net147 has joined #wayland
co1umbarius has joined #wayland
columbarius has quit [Ping timeout: 480 seconds]
Emantor_ has quit []
Emantor has joined #wayland
luc4 has quit [Ping timeout: 480 seconds]
fmuellner has quit [Ping timeout: 480 seconds]
sozuba_tmp has quit [Ping timeout: 480 seconds]
alarumbe has quit [Remote host closed the connection]
alarumbe has joined #wayland
ybogdano has quit [Ping timeout: 480 seconds]
sozuba_tmp has joined #wayland
timidverb has joined #wayland
sozuba_tmp has quit [Ping timeout: 480 seconds]
sozuba_tmp has joined #wayland
agd5f has quit [Read error: No route to host]
sozuba_tmp has quit []
caveman has joined #wayland
caveman has quit [Remote host closed the connection]
caveman has joined #wayland
ybogdano has joined #wayland
timidverb has quit []
timidverb has joined #wayland
nerdopolis has quit [Ping timeout: 480 seconds]
agd5f has joined #wayland
caveman has quit [Remote host closed the connection]
caveman has joined #wayland
ybogdano has quit [Ping timeout: 480 seconds]
smallville7123 has joined #wayland
abeltramo539129 has quit [Remote host closed the connection]
abeltramo539129 has joined #wayland
bluepenquin has joined #wayland
caveman has quit [Remote host closed the connection]
DonRichie has quit [Server closed connection]
DonRichie has joined #wayland
GentooPhysicist393542 has quit [Server closed connection]
GentooPhysicist393542 has joined #wayland
shoragan has quit [Server closed connection]
shoragan has joined #wayland
eroc1990 has quit [Quit: Ping timeout (120 seconds)]
eroc1990 has joined #wayland
TimWolla has quit [Server closed connection]
TimWolla has joined #wayland
CodeSpelunker has joined #wayland
bdaase[m] has quit [Server closed connection]
bdaase[m] has joined #wayland
junaid has joined #wayland
danvet has joined #wayland
CodeSpelunker has quit [Quit: CodeSpelunker]
<smallville7123>
how do i force meson to build in sequence instead of parallel, eg, ALWAYS build target 'foo' FIRST, and then execute target 'foo' SECOND, and then build all the other targets in parellel THIRD
halfline[m] has quit [Server closed connection]
halfline[m] has joined #wayland
kts has joined #wayland
rv1sr has joined #wayland
pounce has quit [Server closed connection]
pounce has joined #wayland
OMGOMG has quit [Server closed connection]
OMGOMG has joined #wayland
Hypfer has quit [Server closed connection]
Hypfer has joined #wayland
kts has quit [Quit: Leaving]
kts has joined #wayland
Szadek has quit [Quit: WeeChat 3.7.1]
dcz_ has joined #wayland
hardening has joined #wayland
devilhorns has joined #wayland
lbia has quit [Server closed connection]
lbia has joined #wayland
ppascher has quit [Ping timeout: 480 seconds]
manuel1985 has joined #wayland
kts has quit [Quit: Leaving]
junaid has quit [Remote host closed the connection]
luc4 has joined #wayland
DrNick has quit [Server closed connection]
DrNick has joined #wayland
ahmadraniri[m] has quit [Server closed connection]
ahmadraniri[m] has joined #wayland
DrNick is now known as Guest795
MrCooper has quit [Quit: Leaving]
MrCooper has joined #wayland
jmdaemon has quit [Ping timeout: 480 seconds]
ki[m] has quit [Server closed connection]
ki[m] has joined #wayland
Brainium has joined #wayland
frytaped[m] has left #wayland [#wayland]
Brainium has quit [Remote host closed the connection]
Brainium has joined #wayland
devilhorns has quit []
Brainium has quit [Quit: Konversation terminated!]
devilhorns has joined #wayland
floof58 is now known as Guest801
floof58 has joined #wayland
Guest801 has quit [Ping timeout: 480 seconds]
Szadek has joined #wayland
Company has quit [Quit: Leaving]
<ManMower>
smallville7123: just make all the other targets dependent on the output from executing target 'foo'?
<ManMower>
you shouldn't be trying to fight with it like that...
<ManMower>
just declaring dependencies "properly" should allow it to work its magic
<smallville7123>
atm im just doing two seperate builds
<smallville7123>
1 build for `foo` then another for `wayland`
<smallville7123>
otherwise it tries to build both `foo` and `wayland` at the same time in parallel
<smallville7123>
eg it might build test_runner.c first then connection.c second then foo.c third
<ManMower>
you could make a script that invokes your two builds in series I guess