You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* cleanname resolutions
* Test osx command line fixes
* Xcode fixes for copy/add for known and used types. (.modulemap. .bundle, .tdb, .swift, .plist)
Swift added set flagged with c++ swift interop 5.9 (C++ can be used)
Added auto compile flags for non-arc terms (search for non-arc commands in .mm.cpp.m)
Added auto objective-c++ flag for .cpp if obj-c commands
Added function for checking file for objc++
VS fixed up exclusions for Apple types for projects / cross
xcode kept default type for addSrc flag to disable add phases - test
* platform adds for other apple
// we want to set addonMakeName before cleaning the addon name, so it is preserved in the exact same way as it was passed, and the addons.make file can be (re)constructed properly
886
886
this->addonMakeName = addonName;
887
887
888
-
// addonName = cleanName(addonName);
888
+
if(parseCleanName){
889
+
addonName = cleanName(addonName);
890
+
}
889
891
890
892
if(addonName.empty()){
891
893
ofLogError("baseProject::addAddon") << "cant add addon with empty name";
// This requires a moro thorough inspection on how to deal with these files, and determine if these need the -fno-objc-arc flag.
470
-
// This flag should be added on a file by file basis, rather than the way it is done below where these are added globally, as such messes up other things.
0 commit comments