You would need to go through the following steps to include Skylink in your project.

1/ Create new Xcode project

2/Run  pod init

3/ Your Podfile should have:

 use_frameworks!

 target 'MyTarget' do

 pod "SKYLINK"

 end

4/ Run pod install

5/ create  the Project-Bridging-Header.h and refer to it in build settings (swift compiler section)

6/ add #import <SKYLINK/SKYLINK.h> to the newlly created file


You should be able to run your project after this.