Skip to content

Commit

Permalink
adjuct project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
RayLiu2015 committed Jun 25, 2018
1 parent ca13737 commit e4cf251
Show file tree
Hide file tree
Showing 25 changed files with 330 additions and 364 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,9 @@ Podfile.lock

SwiftProtobuf.framework

metal/paddle-mobile/Pods/


example/paddle-mobile-demo/paddle-mobile-demo/yolo/
metal/Pods/

paddle-mobile.xcworkspace



Expand Down
Binary file not shown.
34 changes: 0 additions & 34 deletions example/paddle-mobile-demo/paddle-mobile-demo/ViewController.swift

This file was deleted.

14 changes: 14 additions & 0 deletions metal/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
platform :ios, ‘9.0
use_frameworks!

workspace 'paddle-mobile.xcworkspace'

target 'paddle-mobile-demo' do
project 'paddle-mobile-demo/paddle-mobile-demo.xcodeproj'
pod 'SwiftProtobuf', '~> 1.0'
end

target 'paddle-mobile' do
project 'paddle-mobile/paddle-mobile.xcodeproj'
pod 'SwiftProtobuf', '~> 1.0'
end

Large diffs are not rendered by default.

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>paddle-mobile-demo.xcscheme</key>
<dict>
<key>orderHint</key>
<integer>2</integer>
<integer>4</integer>
</dict>
</dict>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// AppDelegate.swift
// paddle-mobile-demo
//
// Created by liuRuiLong on 2018/6/20.
// Created by liuRuiLong on 2018/6/25.
// Copyright © 2018年 orange. All rights reserved.
//

Expand Down
27 changes: 27 additions & 0 deletions metal/paddle-mobile-demo/paddle-mobile-demo/ViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
//
// ViewController.swift
// paddle-mobile-demo
//
// Created by liuRuiLong on 2018/6/25.
// Copyright © 2018年 orange. All rights reserved.
//


import UIKit
import paddle_mobile

class ViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()

}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}


}

10 changes: 0 additions & 10 deletions metal/paddle-mobile/Podfile

This file was deleted.

318 changes: 156 additions & 162 deletions metal/paddle-mobile/paddle-mobile.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Binary file not shown.

This file was deleted.

This file was deleted.

Binary file not shown.

This file was deleted.

20 changes: 7 additions & 13 deletions metal/paddle-mobile/paddle-mobile/paddle_mobile.h
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
//
// paddle_mobile.h
// paddle-mobile
//
// Created by liuRuiLong on 2018/6/25.
// Copyright © 2018年 orange. All rights reserved.
//

#import <UIKit/UIKit.h>

Expand Down

0 comments on commit e4cf251

Please sign in to comment.