How to convert Xcode project type from Cocoa framework to Cocoa application?

Please tell me what is the most effective way? I need to keep at least compiler / linker settings and source files.

+3
source share
1 answer

I need to keep at least compiler / linker settings

An easy way to do this is to transfer the settings from the target / project parameters to the xcconfig file. then the xcconfig file can be (re) used to define build parameters for several purposes and / or projects. for this:

  • xcconfig , , (, Project_Debug, Project_Release, Target_Debug, Target_Release) /:

    • .
    • , . Xcode 3, , , .
    • dragon drop (sic) xcconfig
    • xcconfig /,
    • , , xcconfig
  • , / xcconfigs.

, #include xcconfig xcconfig.

, , .

( ), .

...

:

  • (yup - ).

  • :

    • , (, ).
    • , ( , , , reference- > target phase )

Xcode ( , git), , / scm.

, , lib.

gooood luck!

( Xcode 3 - Xcode 4. Xcode 2)

+3

All Articles