diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-02-15 20:25:18 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-15 13:26:51 -0800 |
commit | c45768a09ffcc6393912b74ed3661b5a110041e8 (patch) | |
tree | e0f322e344a337abd4d9aa40e85e21a58c65af5e /subsurface.pro | |
parent | f6dbed1fc6c71251e1937cb1b63e96ff7a8251c3 (diff) | |
download | subsurface-c45768a09ffcc6393912b74ed3661b5a110041e8.tar.gz |
add and use a version.c / version.h pair
version.c is now object code which is recompiled each time
ssrf-version.h changes, while the interface file version.h
remains that same at all times and files which include it
will not need to be recompiled.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface.pro')
-rw-r--r-- | subsurface.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/subsurface.pro b/subsurface.pro index a34bc091a..cc8fd1795 100644 --- a/subsurface.pro +++ b/subsurface.pro @@ -26,6 +26,7 @@ system(cat $$VERSION_FILE > /dev/null 2>&1 || touch $$VERSION_FILE) HEADERS = \ $$VERSION_FILE \ + version.h \ cochran.h \ color.h \ deco.h \ @@ -119,6 +120,7 @@ android: HEADERS -= \ qt-ui/printoptions.h SOURCES = \ + version.c \ cochran.c \ deco.c \ device.c \ |