Posted By


masahiroh on 08/31/10

Tagged


Statistics


Viewed 455 times
Favorited by 0 user(s)

Build Xcode Project in Emacs


/ Published in: Emacs Lisp
Save to your folder(s)



Copy this code and paste it in your HTML
  1. (defun xcode-compile ()
  2. (interactive)
  3. (if (directory-files "." nil ".*\.xcodeproj$" nil)
  4. (compile "xcodebuild -configuration Debug")
  5. ;else
  6. (progn
  7. (cd "../")
  8. (xcode-compile))))

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.