mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
Ports: Make nesalizer build look in the $SERENITY_ROOT/Root for SDL
It would be nice if we could get ports to stop detecting things in the host system. Then we wouldn't need this kind of hackery as much.
This commit is contained in:
parent
cd55f76727
commit
1f95ea1b6d
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
deps = $(addprefix $(BUILD_DIR)/,$(c_sources:=.d) $(cpp_sources:=.d))
|
||||
|
||||
-LDLIBS := $(shell sdl2-config --libs) -lrt
|
||||
+LDLIBS := -lSDL2 -lgui -lipc -ldraw -lcore -lpthread
|
||||
+LDLIBS := -L$(SERENITY_ROOT)/Root/lib -lSDL2 -lgui -lipc -ldraw -lcore -lpthread
|
||||
|
||||
ifeq ($(INCLUDE_DEBUGGER),1)
|
||||
LDLIBS += -lreadline
|
||||
|
|
Loading…
Add table
Reference in a new issue