Skip to content

Commit

Permalink
fix: ensure copy rule copy *.hpp headers
Browse files Browse the repository at this point in the history
  • Loading branch information
edusperoni committed May 30, 2024
1 parent 7ded0c3 commit 3b13e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v8ios.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1850,7 +1850,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "cd \"${SRCROOT}/NativeScript\"\n\necho 'Copying headers into Framework..'\nfor H in `find . -name \"*.h\"`; do\n echo \"copying ${H} to ${BUILT_PRODUCTS_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}/${H}\"\n ditto \"${H}\" \"${BUILT_PRODUCTS_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}/${H}\"\ndone\n";
shellScript = "cd \"${SRCROOT}/NativeScript\"\n\necho 'Copying headers into Framework..'\nfor H in `find . -name \"*.h\" -o -name \"*.hpp\"`; do\n echo \"copying ${H} to ${BUILT_PRODUCTS_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}/${H}\"\n ditto \"${H}\" \"${BUILT_PRODUCTS_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}/${H}\"\ndone\n";
};
C27E5DB322F31FF800498ED0 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
Expand Down

0 comments on commit 3b13e9d

Please sign in to comment.