mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
b4f53143b0
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
14 lines
311 B
C++
14 lines
311 B
C++
/** \file fish_version.c Fish version receiver.
|
|
|
|
This file has a specific purpose of shortening compilation times when
|
|
the only change is different `git describe` version.
|
|
*/
|
|
|
|
#include "fish_version.h"
|
|
|
|
/**
|
|
* Return fish shell version.
|
|
*/
|
|
const char *get_fish_version() {
|
|
return FISH_BUILD_VERSION;
|
|
}
|