This repository has been archived by the owner on Feb 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #518 from facebook/beng/buck
Allow xctool to build with Buck
Showing
7 changed files
with
557 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[cache] | ||
mode = dir | ||
dir_max_size = 512MB | ||
|
||
[cxx] | ||
cflags = -std=gnu11 | ||
cxxflags = -std=c++11 -stdlib=libc++ | ||
default_platform = macosx-x86_64 | ||
combined_preprocess_and_compile = true | ||
|
||
[project] | ||
ide = xcode | ||
ignore = \ | ||
.git, \ | ||
.hg, \ | ||
.buckd, \ | ||
build |
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 |
---|---|---|
|
@@ -10,3 +10,6 @@ xcuserdata | |
build | ||
*.swp | ||
*.xccheckout | ||
.buckd | ||
buck-out | ||
buck-cache |
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,2 +1,9 @@ | ||
language: objective-c | ||
script: scripts/build.sh && ./xctool.sh -workspace xctool.xcworkspace -scheme xctool build build-tests run-tests | ||
before_script: | ||
- sudo brew tap caskroom/cask | ||
- sudo brew tap caskroom/versions | ||
- sudo brew update | ||
- sudo brew install brew-cask | ||
- sudo brew cask install java7 | ||
- sudo brew install ant | ||
script: ./scripts/travis-ci.sh |
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,8 @@ | ||
{ | ||
"ignore_dirs": [ | ||
"buck-out", | ||
"buck-cache", | ||
".buckd", | ||
"build", | ||
] | ||
} |
Oops, something went wrong.