Skip to content

Commit

Permalink
Fix non cmake build paths for updated nlohmann_json version.
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbroad committed Jul 31, 2024
1 parent 9142f08 commit d38703c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $(LOCAL_PATH)/$(GL4ES_PATH)/include/ \
$(LOCAL_PATH)/$(GLU_PATH)/include/ \
$(LOCAL_PATH)/$(ZLIB_PATH)/ \
$(LOCAL_PATH)/$(MYGLOB_PATH)/include/ \
$(LOCAL_PATH)/nlohmann_json/single_include/ \
$(LOCAL_PATH)/nlohmann_json/include/ \
$(LOCAL_PATH)/$(OPENSSL_PATH)/include/

LOCAL_CPPFLAGS := \
Expand Down
2 changes: 1 addition & 1 deletion Makefile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

-include make.conf

JSON_FILES_CFLAGS = -I nlohmann_json/single_include/
JSON_FILES_CFLAGS = -I nlohmann_json/include/
ADDRSANITISER_CFLAGS=-fsanitize=address

ADDRSANITISER_LIBS=-fsanitize=address
Expand Down
4 changes: 2 additions & 2 deletions macosx/Eternal Lands.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1809,7 +1809,7 @@
"$(USER_LIBRARY_DIR)/Frameworks/SDL2_net.framework/Headers",
"$(USER_LIBRARY_DIR)/Frameworks/SDL2_ttf.framework/Headers",
"$(USER_LIBRARY_DIR)/Frameworks/SDL2_image.framework/Headers",
"$(SRCROOT)/../nlohmann_json/single_include/",
"$(SRCROOT)/../nlohmann_json/include/",
"$(SRCROOT)/include/",
);
MARKETING_VERSION = 1.9.6p1;
Expand Down Expand Up @@ -1871,7 +1871,7 @@
"$(USER_LIBRARY_DIR)/Frameworks/SDL2_net.framework/Headers",
"$(USER_LIBRARY_DIR)/Frameworks/SDL2_ttf.framework/Headers",
"$(USER_LIBRARY_DIR)/Frameworks/SDL2_image.framework/Headers",
"$(SRCROOT)/../nlohmann_json/single_include/",
"$(SRCROOT)/../nlohmann_json/include/",
"$(SRCROOT)/include/",
);
MARKETING_VERSION = 1.9.6p1;
Expand Down

0 comments on commit d38703c

Please sign in to comment.