Revision: 31175
Updated Code
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
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
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