Skip to content

Commit 010aca4

Browse files
authored
Merge pull request #734 from nicolasnoble/memcard-undo
Memcard manager improvements
2 parents 0e4a56c + fef75f5 commit 010aca4

33 files changed

+5109
-374
lines changed

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ifeq ($(UNAME_S),Darwin)
7070
LDFLAGS += -mmacosx-version-min=10.15
7171
else
7272
LDFLAGS += -lstdc++fs
73-
LDFLAGS += -lGL -lX11
73+
LDFLAGS += -lGL -lX11 -lxcb
7474
endif
7575

7676
LDFLAGS += third_party/luajit/src/libluajit.a
@@ -90,6 +90,8 @@ SRCS += third_party/fmt/src/os.cc third_party/fmt/src/format.cc
9090
IMGUI_SRCS += $(wildcard third_party/imgui/*.cpp)
9191
SRCS += $(IMGUI_SRCS)
9292
SRCS += $(wildcard third_party/libelfin/*.cc)
93+
SRCS += third_party/clip/clip.cpp
94+
SRCS += third_party/clip/image.cpp
9395
SRCS += third_party/gl3w/GL/gl3w.c
9496
SRCS += third_party/imgui/backends/imgui_impl_opengl3.cpp
9597
SRCS += third_party/imgui/backends/imgui_impl_glfw.cpp
@@ -105,7 +107,9 @@ SRCS += third_party/zep/src/mcommon/animation/timer.cpp
105107
SRCS += third_party/zep/src/mcommon/file/path.cpp
106108
SRCS += third_party/zep/src/mcommon/string/stringutils.cpp
107109
ifeq ($(UNAME_S),Darwin)
108-
SRCS += src/main/complain.mm
110+
SRCS += src/main/complain.mm third_party/clip/clip_osx.mm
111+
else
112+
SRCS += third_party/clip/clip_x11.cpp
109113
endif
110114
SUPPORT_SRCS := $(call rwildcard,src/support/,*.cc)
111115
SUPPORT_SRCS += third_party/fmt/src/os.cc third_party/fmt/src/format.cc

0 commit comments

Comments
 (0)