Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
Merge pull request #518 from facebook/beng/buck
Browse files Browse the repository at this point in the history
Allow xctool to build with Buck
  • Loading branch information
bhamiltoncx committed May 29, 2015
2 parents 5244f8c + 747ac53 commit 3229558
Show file tree
Hide file tree
Showing 7 changed files with 557 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .buckconfig
@@ -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
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -10,3 +10,6 @@ xcuserdata
build
*.swp
*.xccheckout
.buckd
buck-out
buck-cache
9 changes: 8 additions & 1 deletion .travis.yml
@@ -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
8 changes: 8 additions & 0 deletions .watchmanconfig
@@ -0,0 +1,8 @@
{
"ignore_dirs": [
"buck-out",
"buck-cache",
".buckd",
"build",
]
}

0 comments on commit 3229558

Please sign in to comment.