Skip to content

Commit

Permalink
follow the install path changes of brew
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuho committed Nov 3, 2024
1 parent 9b88159 commit 9992856
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions picotls.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -976,10 +976,10 @@
EXECUTABLE_PREFIX = lib;
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
HEADER_SEARCH_PATHS = (
/usr/local/opt/openssl/include,
include,
"$(inherited)",
/opt/homebrew/opt/openssl/include,
);
LIBRARY_SEARCH_PATHS = /usr/local/opt/openssl/lib;
LIBRARY_SEARCH_PATHS = /opt/homebrew/opt/openssl/lib;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
Expand All @@ -990,10 +990,10 @@
EXECUTABLE_PREFIX = lib;
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
HEADER_SEARCH_PATHS = (
/usr/local/opt/openssl/include,
include,
"$(inherited)",
/opt/homebrew/opt/openssl/include,
);
LIBRARY_SEARCH_PATHS = /usr/local/opt/openssl/lib;
LIBRARY_SEARCH_PATHS = /opt/homebrew/opt/openssl/lib;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
Expand Down Expand Up @@ -1041,8 +1041,9 @@
HEADER_SEARCH_PATHS = (
include,
/usr/local/include,
/opt/homebrew/opt/brotli/include,
);
LIBRARY_SEARCH_PATHS = "";
LIBRARY_SEARCH_PATHS = /opt/homebrew/opt/brotli/lib;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -1087,8 +1088,9 @@
HEADER_SEARCH_PATHS = (
include,
/usr/local/include,
/opt/homebrew/opt/brotli/include,
);
LIBRARY_SEARCH_PATHS = "";
LIBRARY_SEARCH_PATHS = /opt/homebrew/opt/brotli/lib;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = macosx;
Expand All @@ -1100,10 +1102,10 @@
buildSettings = {
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
HEADER_SEARCH_PATHS = (
/usr/local/opt/openssl/include,
include,
"$(inherited)",
/opt/homebrew/opt/openssl/include,
);
LIBRARY_SEARCH_PATHS = /usr/local/opt/openssl/lib;
LIBRARY_SEARCH_PATHS = /opt/homebrew/opt/openssl/lib;
OTHER_LDFLAGS = "-lcrypto";
PRODUCT_NAME = "$(TARGET_NAME)";
};
Expand All @@ -1114,10 +1116,10 @@
buildSettings = {
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
HEADER_SEARCH_PATHS = (
/usr/local/opt/openssl/include,
include,
"$(inherited)",
/opt/homebrew/opt/openssl/include,
);
LIBRARY_SEARCH_PATHS = /usr/local/opt/openssl/lib;
LIBRARY_SEARCH_PATHS = /opt/homebrew/opt/openssl/lib;
OTHER_LDFLAGS = "-lcrypto";
PRODUCT_NAME = "$(TARGET_NAME)";
};
Expand Down Expand Up @@ -1149,13 +1151,12 @@
"$(inherited)",
);
HEADER_SEARCH_PATHS = (
include,
/usr/local/opt/openssl/include,
/usr/local/include,
"$(inherited)",
/opt/homebrew/opt/openssl/include,
);
LIBRARY_SEARCH_PATHS = (
/usr/local/opt/openssl/lib,
/usr/local/lib,
"$(inherited)",
/opt/homebrew/opt/openssl/lib,
);
OTHER_LDFLAGS = (
"-lcrypto",
Expand All @@ -1175,13 +1176,12 @@
"$(inherited)",
);
HEADER_SEARCH_PATHS = (
include,
/usr/local/opt/openssl/include,
/usr/local/include,
"$(inherited)",
/opt/homebrew/opt/openssl/include,
);
LIBRARY_SEARCH_PATHS = (
/usr/local/opt/openssl/lib,
/usr/local/lib,
"$(inherited)",
/opt/homebrew/opt/openssl/lib,
);
OTHER_LDFLAGS = (
"-lcrypto",
Expand Down

0 comments on commit 9992856

Please sign in to comment.