Return to Snippet

Revision: 31175
at August 31, 2010 14:39 by masahiroh


Updated Code
(defun xcode-compile ()
  (interactive)
  (if (directory-files "." nil ".*\.xcodeproj$" nil)
      (compile "xcodebuild -configuration Debug")
    ;else
    (progn
      (cd "../")
      (xcode-compile))))

Revision: 31174
at August 31, 2010 14:35 by masahiroh


Initial Code
(defun xcode-compile ()
  (interactive)
  (if (directory-files "." nil ".*\.xcodeproj$" nil)
      (compile "xcodebuild -configuration Debug")
    ;else
      (progn
        (cd "../")
        (xcode-compile))))

Initial URL


Initial Description


Initial Title
Build Xcode Project in Emacs

Initial Tags


Initial Language
Emacs Lisp