Skip to content

Commit

Permalink
Changed public header location to match framework.
Browse files Browse the repository at this point in the history
When a user wants to include lumberjack in a source file for both ios and mac, they previously had to use two different imports:

Now, the ios build puts the headers in a "Lumberjack" directory so that consumers can do a single import for both platforms:
  • Loading branch information
hborders committed Aug 1, 2012
1 parent 610dca4 commit 0b9e732
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -392,7 +392,9 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Lumberjack/Lumberjack-Prefix.pch";
OTHER_LDFLAGS = "-ObjC";
PRIVATE_HEADERS_FOLDER_PATH = /usr/local/include/Lumberjack;
PRODUCT_NAME = "$(TARGET_NAME)";
PUBLIC_HEADERS_FOLDER_PATH = /usr/local/include/Lumberjack;
SKIP_INSTALL = YES;
};
name = Debug;
Expand All @@ -404,7 +406,9 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Lumberjack/Lumberjack-Prefix.pch";
OTHER_LDFLAGS = "-ObjC";
PRIVATE_HEADERS_FOLDER_PATH = /usr/local/include/Lumberjack;
PRODUCT_NAME = "$(TARGET_NAME)";
PUBLIC_HEADERS_FOLDER_PATH = /usr/local/include/Lumberjack;
SKIP_INSTALL = YES;
};
name = Release;
Expand Down

0 comments on commit 0b9e732

Please sign in to comment.