Ignore:
Timestamp:
Mar 29, 2012, 12:37:43 PM (13 years ago)
Author:
[email protected]
Message:

Don't use a flattened framework path when building on OS X

Reviewed by Mark Rowe.

  • Configurations/ToolExecutable.xcconfig: Use REAL_PLATFORM_NAME

to select different INSTALL_PATH values.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/Configurations/ToolExecutable.xcconfig

    r112496 r112562  
    1 // Copyright (C) 2011 Apple Inc. All rights reserved.
     1// Copyright (C) 2011, 2012 Apple Inc. All rights reserved.
    22//
    33// Redistribution and use in source and binary forms, with or without
     
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 INSTALL_PATH = $(JAVASCRIPTCORE_FRAMEWORKS_DIR)/JavaScriptCore.framework/Resources;
     24INSTALL_PATH = $(INSTALL_PATH_$(REAL_PLATFORM_NAME));
     25INSTALL_PATH_iphoneos = $(JAVASCRIPTCORE_FRAMEWORKS_DIR)/JavaScriptCore.framework/Resources;
     26INSTALL_PATH_iphonesimulator = $(INSTALL_PATH_iphoneos);
     27INSTALL_PATH_macosx = $(JAVASCRIPTCORE_FRAMEWORKS_DIR)/JavaScriptCore.framework/Versions/A/Resources;
    2528PRODUCT_NAME = $(TARGET_NAME);
    2629
Note: See TracChangeset for help on using the changeset viewer.