mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
AudioServer: Link against LibIPC
We're not using any of the functionality yet, but soon...
This commit is contained in:
parent
8dd07c3075
commit
3c1bad99a2
Notes:
sideshowbarker
2024-07-19 12:55:01 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/3c1bad99a24
2 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ INCLUDE_FLAGS = \
|
|||
LDFLAGS = \
|
||||
-L$(SERENITY_BASE_DIR)/Libraries/LibC \
|
||||
-L$(SERENITY_BASE_DIR)/Libraries/LibCore \
|
||||
-L$(SERENITY_BASE_DIR)/Libraries/LibIPC \
|
||||
-L$(SERENITY_BASE_DIR)/Libraries/LibM \
|
||||
-L$(SERENITY_BASE_DIR)/Libraries/LibDraw \
|
||||
-L$(SERENITY_BASE_DIR)/Libraries/LibGUI \
|
||||
|
|
|
@ -14,7 +14,7 @@ DEFINES += -DUSERLAND
|
|||
all: $(APP)
|
||||
|
||||
$(APP): $(OBJS)
|
||||
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore
|
||||
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore -lipc
|
||||
|
||||
.cpp.o:
|
||||
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
|
||||
|
|
Loading…
Reference in a new issue