forked from jinyuli/protobuf-objc
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alexey Khokhlov
committed
Mar 20, 2014
1 parent
ef07a0d
commit 3baebcf
Showing
51 changed files
with
18 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Install Protocol Buffers for Objective C | ||
# Install Protocol Buffers for Objective-C, only for ARC projects | ||
|
||
1.`ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"` | ||
|
||
|
@@ -10,19 +10,9 @@ | |
|
||
5.`git clone [email protected]:alexeyxo/protobuf-objc.git` | ||
|
||
6.`./autogen.sh` | ||
|
||
7.`./configure` | ||
|
||
8.`sudo make && make install` | ||
6.`./build.sh` | ||
|
||
#Compile ".proto" files. | ||
|
||
|
||
###Compile ARC support. | ||
`protoc --plugin=/usr/local/bin/protoc-gen-objc-arc person.proto --objc_out="./"` | ||
|
||
###Compile without ARC. | ||
`protoc --plugin=/usr/local/bin/protoc-gen-objc person.proto --objc_out="./"` | ||
|
||
#Framework Directory | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
make clean; | ||
./autogen; | ||
./configure; | ||
make && make install; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.