I have the following projects in my workspace:
Common
Security
(dependent onCommon
)Data
(dependent onCommon
,Security
, (andCoreData
))Api
(dependent onCommon
,Security
,Data
)MyApp
(dependent onCommon
,Security
,Data
,Api
)
All of the projects except MyApp
are Cocoa Touch Frameworks, mostly written in Swift.
Since Xcode 6.3.1 I'm unable to compile as I'm getting the following message while building my 'Api' framework:
<unknown>:0: error: timed out waiting to acquire lock file for module 'Data'
~/Developer/myapp/src/Api/Api/SomeClass.swift:4:8: error: cannot load underlying module for 'Data'
import Data
^
#import <Cocoa/Cocoa.h>
statement. – Hemihydrate