From a5210c5639c5039af3eea383100b26c461b4832a Mon Sep 17 00:00:00 2001 From: user Date: Fri, 7 Feb 2014 14:05:20 -0500 Subject: [PATCH] Xcode config file initial support --- 3rdparty/stasm4.0.0/stasm/stasm.h | 2 +- README.md | 1 - debug.xcconfig | 10 ++++++++++ opencv.xcconfig | 7 +++++++ release.xcconfig | 9 +++++++++ 5 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 debug.xcconfig create mode 100644 opencv.xcconfig create mode 100644 release.xcconfig diff --git a/3rdparty/stasm4.0.0/stasm/stasm.h b/3rdparty/stasm4.0.0/stasm/stasm.h index 2161bf8..d4fb39b 100755 --- a/3rdparty/stasm4.0.0/stasm/stasm.h +++ b/3rdparty/stasm4.0.0/stasm/stasm.h @@ -30,7 +30,7 @@ static const char* const STASM_VERSION = "4.0.0" #pragma warning(disable:4267) #endif -#include "opencv/cv.h" +#include #if _MSC_VER >= 1200 #pragma warning(default:4996) // re-enable the warnings disabled above diff --git a/README.md b/README.md index faac634..c95898a 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,3 @@ To optionally check out a particular [tagged release](https://github.com/biometr [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/mburge/openbr/trend.png)](https://bitdeli.com/free "Bitdeli Badge") - diff --git a/debug.xcconfig b/debug.xcconfig new file mode 100644 index 0000000..ed875e3 --- /dev/null +++ b/debug.xcconfig @@ -0,0 +1,10 @@ +// +// debug.xcconfig +// openbr +// +// Created by user on 1/19/14. +// +// + +ARCHS = "$(ARCHS_STANDARD)"; +ONLY_ACTIVE_ARCH = YES; diff --git a/opencv.xcconfig b/opencv.xcconfig new file mode 100644 index 0000000..c1f3f52 --- /dev/null +++ b/opencv.xcconfig @@ -0,0 +1,7 @@ +// +// opencv.xcconfig +// openbr +// +// Created by user on 1/19/14. +// +// diff --git a/release.xcconfig b/release.xcconfig new file mode 100644 index 0000000..179b87a --- /dev/null +++ b/release.xcconfig @@ -0,0 +1,9 @@ +// +// release.xcconfig +// openbr +// +// Created by user on 1/19/14. +// +// +ARCHS = "$(ARCHS_STANDARD)"; +ONLY_ACTIVE_ARCH = YES; \ No newline at end of file -- libgit2 0.21.4