File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed
Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,11 @@ let project = Project("Main") { p in
6161 " SKIP_INSTALL " <<< " YES "
6262 )
6363
64+ t. configurations. debug. override (
65+
66+ " MTL_ENABLE_DEBUG_INFO " <<< true
67+ )
68+
6469 //---
6570
6671 t. unitTests { ut in
@@ -71,12 +76,22 @@ let project = Project("Main") { p in
7176
7277 ut. configurations. all. override (
7378
79+ // very important for unit tests,
80+ // prevents the error when unit test do not start at all
81+ " LD_RUNPATH_SEARCH_PATHS " <<<
82+ " $(inherited) @executable_path/Frameworks @loader_path/Frameworks " ,
83+
7484 " IPHONEOS_DEPLOYMENT_TARGET " <<< My . deploymentTarget, // bug wokraround
7585
7686 " PRODUCT_BUNDLE_IDENTIFIER " <<< BundleId . tst,
7787 " INFOPLIST_FILE " <<< " Info/Tst.plist " ,
7888 " FRAMEWORK_SEARCH_PATHS " <<< " $(inherited) $(BUILT_PRODUCTS_DIR) "
7989 )
90+
91+ ut. configurations. debug. override (
92+
93+ " MTL_ENABLE_DEBUG_INFO " <<< true
94+ )
8095 }
8196 }
8297}
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >FMWK </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >1.0.7 </string >
18+ <string >1.0.8 </string >
1919 <key >CFBundleVersion </key >
2020 <string >$(CURRENT_PROJECT_VERSION) </string >
2121 <key >NSHumanReadableCopyright </key >
Original file line number Diff line number Diff line change 415415 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
416416 CODE_SIGN_IDENTITY = "-";
417417 COPY_PHASE_STRIP = NO;
418- CURRENT_PROJECT_VERSION = 8 ;
418+ CURRENT_PROJECT_VERSION = 9 ;
419419 DEBUG_INFORMATION_FORMAT = dwarf;
420420 ENABLE_STRICT_OBJC_MSGSEND = YES;
421421 ENABLE_TESTABILITY = YES;
467467 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
468468 CODE_SIGN_IDENTITY = "-";
469469 COPY_PHASE_STRIP = NO;
470- CURRENT_PROJECT_VERSION = 8 ;
470+ CURRENT_PROJECT_VERSION = 9 ;
471471 DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
472472 ENABLE_NS_ASSERTIONS = NO;
473473 ENABLE_STRICT_OBJC_MSGSEND = YES;
You can’t perform that action at this time.
0 commit comments