From eaf858b1472d8248145d6bb848e9cb3890005464 Mon Sep 17 00:00:00 2001 From: Benjamin C Meyer Date: Tue, 13 Mar 2007 21:58:10 +0100 Subject: [PATCH] ignore generate files, put the binary in the top level dir, in !mac have the binary name be lower case --- .gitignore | 2 ++ autotests/.gitignore | 1 + autotests/history/.gitignore | 4 ++++ src/src.pro | 13 ++++++++++++- 4 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 autotests/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2842755 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +Makefile +Ambit.app diff --git a/autotests/.gitignore b/autotests/.gitignore new file mode 100644 index 0000000..f3c7a7c --- /dev/null +++ b/autotests/.gitignore @@ -0,0 +1 @@ +Makefile diff --git a/autotests/history/.gitignore b/autotests/history/.gitignore index c375d5b..b434e3f 100644 --- a/autotests/history/.gitignore +++ b/autotests/history/.gitignore @@ -1 +1,5 @@ +*.o +*.moc +moc_* +Makefile history diff --git a/src/src.pro b/src/src.pro index 90e74af..ab15670 100644 --- a/src/src.pro +++ b/src/src.pro @@ -1,8 +1,19 @@ TEMPLATE = app -TARGET = Ambit +TARGET = ambit + +mac { + TARGET =Ambit +} + DEPENDPATH += . INCLUDEPATH += . +DESTDIR = ../ +OBJECTS_DIR = build +MOC_DIR = build +UI_DIR = build +QT += script + CONFIG += warn_on debug # Input -- 2.11.4.GIT