Skip to content

Commit

Permalink
Fixes header and library search paths on Release (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 authored Jan 24, 2021
1 parent 2ba28a5 commit 34add6c
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,14 +322,14 @@
GCC_PREFIX_HEADER = "";
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
HEADER_SEARCH_PATHS = (
"\"$(PROJECT_DIR)/../build/include\"",
"\"$(PROJECT_DIR)/../build/python/include\"",
"{{ cookiecutter.dist_dir }}/root/python3/include/python3.8/**",
"{{ cookiecutter.dist_dir }}/include/common/sdl2",
);
INFOPLIST_FILE = "{{ cookiecutter.project_name }}-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(PROJECT_DIR)/../build/lib\"",
"{{ cookiecutter.dist_dir }}/lib",
);
OTHER_LDFLAGS = "-all_load";
PRODUCT_NAME = {{ cookiecutter.project_name }};
Expand All @@ -340,6 +340,7 @@
STRIP_INSTALLED_PRODUCT = NO;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
USER_HEADER_SEARCH_PATHS = "";
};
name = Release;
};
Expand Down

0 comments on commit 34add6c

Please sign in to comment.