aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish.xcodeproj
Commit message (Collapse)AuthorAge
* Be a bit more consistent and proper.Gravatar Aaron Gyes2016-06-05
|
* Repair various invalid HeaderDoc comments.Gravatar Aaron Gyes2016-06-05
| | | | | Enable build setting to allow Xcode to complain about invalid comments.
* Merge branch 'Integration_2.3.0'Gravatar David Adam2016-05-06
|\ | | | | | | (Bump version numbers to reflect post-2.3b2)
* | Add some more files missing from Xcode compile stepGravatar ridiculousfish2016-04-29
| | | | | | | | | | Previously the .cpp files were #included by common.cpp Now they get compiled separately
* | Fix the Xcode buildGravatar ridiculousfish2016-04-29
| | | | | | | | Add missing files to link phase
| * Don't ship libpcre2.a in the OS X installer packageGravatar ridiculousfish2016-04-21
|/ | | | | This fix prevents the copy-to-install-path phase for this target in Xcode by setting the SKIP_INSTALL flag.
* Update Xcode build for new pcre2 versionGravatar David Adam2016-04-19
|
* Update Xcode project for latest XcodeGravatar ridiculousfish2016-04-07
|
* Customisable extra configuration, completion and function directoriesGravatar David Adam2016-04-04
| | | | | | | | | | | | | | | - Add options to the autotools build to set the path for the "vendor" or "extra" configuration snippets, functions and completions directories. - Remove the vendor_completions directory from the Xcode build, as these are relocatable and compiling the paths in does not make sense. This allows packaging tools like Homebrew and Nix to use a common directory outside of the main prefix for third-party completions, and to make these available for programmatic discovery through `pkg-config`. Closes #2113
* Update Xcode project settingsGravatar ridiculousfish2015-12-19
|
* Upgrade Xcode project for newest XcodeGravatar ridiculousfish2015-11-09
|
* Factor running the xcode_version_gen.shGravatar ridiculousfish2015-10-07
| | | | | | | Instead of duplicating the script invocation across targets, put it into a separate target and add dependencies. This also requires moving its output into the SHARED_DERIVED_FILE_DIR (which may be undocumented)?
* Generate version numbers for Xcode buildsGravatar Ian Ray2015-09-29
| | | | | | | | | | | | Teach Xcode to run new script xcode_version_gen.sh before building the fish_shell and fish_indent targets. The script generates file fish-build-version.h for inclusion by fish_version.cpp. Note that Xcode always runs the script because of the phony target named force-fish-build-version.h, but fish-build-version.h is only touched if the contents of FISH-BUILD-VERSION-FILE change. Fixes #890
* Move OS X pcre2.h into a new directory shared_headersGravatar ridiculousfish2015-09-26
| | | | | | Allows fish and pcre2 project to both find the header, without their respective config.h files interfering with each other.
* Squashed commit of the following:Gravatar Ian Ray2015-09-26
| | | | | | | | | | | | | | commit 33c7c4df307b144652d6d842472aa843cc6a5420 Author: Ian Ray <ianjray@me.com> Date: Sat Sep 26 21:28:50 2015 +0300 Fix xcode include paths for pcre2.h commit 03d255a3e5e2e9b109c0bc6789ffa431381b6cb3 Author: Ian Ray <ianjray@me.com> Date: Sat Sep 26 21:02:42 2015 +0300 Fix xcode include paths for pcre2.h
* Upgrade Xcode build to Xcode 7Gravatar ridiculousfish2015-09-24
|
* Integrate pcre2 into Xcode buildGravatar ridiculousfish2015-09-21
|
* Migrate builtin_string.cpp to its own object fileGravatar ridiculousfish2015-09-21
| | | | This keeps the architecture a little less surprising
* Allow fish to build from Xcode without lexicon_filterGravatar ridiculousfish2015-08-15
| | | | Emit a warning but keep building
* Teach the Xcode build how to apply lexicon_filterGravatar ridiculousfish2015-08-11
|
* Dead macro cleanupGravatar ridiculousfish2015-08-10
| | | | Enable -Wunused-macros, and remove said unused macros
* Update xcode project for new XcodeGravatar ridiculousfish2015-07-25
|
* Migrate source files into src/ directoryGravatar ridiculousfish2015-07-25
|\ | | | | | | | | | | | | | | This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866
| * Migrate source files into src/ directoryGravatar ridiculousfish2015-07-24
| | | | | | | | | | | | | | | | This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866
* | death of mimedb: remove mimedb from the treeGravatar David Adam2015-07-23
|/
* config.h was missing from project file.Gravatar Nicholas Maccharoli2015-07-16
| | | | Derived Sources empty except for redundant copy of config.h
* Merge branch 'Integration_2.2.0'Gravatar David Adam2015-07-12
|\
| * Bump version for 2.2.0Gravatar David Adam2015-06-28
| |
* | mimedb: kill mimedb.hGravatar David Adam2015-05-21
| | | | | | | | Closes #2064.
* | Merge branch 'Integration_2.2.0'Gravatar David Adam2015-05-21
|\|
| * bump version for 2.21bGravatar David Adam2015-05-05
|/
* Upgrade Xcode project format to latestGravatar ridiculousfish2015-05-02
|
* Teach Xcode build to create vendor_completions.d directoryGravatar ridiculousfish2015-05-02
| | | | Per #1485
* Merge branch 'Integration_2.1.2'Gravatar David Adam2015-03-11
|\
| * Bump OS X version from 2.1.1 to 2.1.2Gravatar ridiculousfish2015-02-16
| |
* | Update fish_indent Xcode build targetGravatar ridiculousfish2014-12-23
| |
* | Make false/true into builtinsGravatar Kevin Ballard2014-09-29
| | | | | | | | | | | | | | Making `true` into a builtin is a significant optimization to `while true` loops. As long as `true` is a builtin, we may as well make `false` builtin as well (despite the fact that it's not typically executed in a loop).
* | Add wcstringutil to the OS X build for tests targetGravatar ridiculousfish2014-09-21
| |
* | Add wcstringutil to the OS X buildGravatar ridiculousfish2014-09-21
| |
| * Bump osx/config.h version number to 2.1.1Gravatar ridiculousfish2014-09-07
| |
* | Add fish_tests target to Xcode buildGravatar ridiculousfish2014-08-04
| | | | | | | | Allows running the tests in Xcode
* | Remove env_universal.h and env_universal.cpp from projectGravatar ridiculousfish2014-06-18
| |
* | Removal of more fishd artifacts and headersGravatar ridiculousfish2014-06-09
| |
* | Remove fishd.cpp source, docs, and target from Makefile and XcodeGravatar ridiculousfish2014-06-05
| | | | | | | | project
* | fishd to link against fish_version.o in Xcode buildGravatar ridiculousfish2014-05-02
| |
* | Add fish_version to Xcode projectGravatar ridiculousfish2014-05-02
| |
* | Stop linking iconv, now that we have our own utf8 conversion routinesGravatar ridiculousfish2014-03-23
| |
* | Incorporate a modified UTF8 <-> wchar_t implementation from AlexeyGravatar ridiculousfish2014-03-22
| | | | | | | | | | Vatchenko (http://www.bsdua.org/libbsdua.html) in preparation for eliminating our dependency on iconv
* | Remove old pager remnants, including documentation and references in theGravatar ridiculousfish2014-03-15
| | | | | | | | build system
* | Remove old fish_pager source and implementationGravatar ridiculousfish2014-03-15
| |