https://github.com/qcl/qcourse-buck
Buck demo for iPlayground 2019
https://github.com/qcl/qcourse-buck
buck demo ios iplayground xcode
Last synced: 3 months ago
JSON representation
Buck demo for iPlayground 2019
- Host: GitHub
- URL: https://github.com/qcl/qcourse-buck
- Owner: qcl
- Created: 2019-09-08T20:10:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-23T21:03:47.000Z (over 5 years ago)
- Last Synced: 2025-01-23T05:14:10.306Z (4 months ago)
- Topics: buck, demo, ios, iplayground, xcode
- Language: Swift
- Homepage:
- Size: 97 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QCourse-Buck
Buck demo for iPlayground 2019, [slides is here](https://speakerdeck.com/qcl/using-buck-to-save-ios-project-build-time).Note that this demo is running on Xcode 10, there could be some issues while trying to run demos with Xcode 11.
## Demo 0
```
$ git checkout demo/0
```
This branch contains only source code files and resources. No buck file.### Prepare a clean environment
```
$ make clean
$ make kill_buckd
```## Demo 1
```
$ git checkout demo/1
```This branch contains basic buck build file and `.buckconfig`.
### Build by buck
```
$ make build
```### Run on simulator
```
$ make debug
```### Generate Xcode project file
```
$ make project
```## Demo 2
```
$ git checkout demo/2
```This branch integrated with `Podfile`.
### Build by buck
```
$ make build
```### Run on simulator
```
$ make debug
```### Generate Xcode project file
```
$ make project
```