Commit a5210c5639c5039af3eea383100b26c461b4832a

Authored by user
1 parent 1640f68b

Xcode config file initial support

3rdparty/stasm4.0.0/stasm/stasm.h
... ... @@ -30,7 +30,7 @@ static const char* const STASM_VERSION = "4.0.0"
30 30 #pragma warning(disable:4267)
31 31 #endif
32 32  
33   -#include "opencv/cv.h"
  33 +#include <opencv/cv.h>
34 34  
35 35 #if _MSC_VER >= 1200
36 36 #pragma warning(default:4996) // re-enable the warnings disabled above
... ...
README.md
... ... @@ -14,4 +14,3 @@ To optionally check out a particular [tagged release](https://github.com/biometr
14 14  
15 15  
16 16 [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/mburge/openbr/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
17   -
... ...
debug.xcconfig 0 โ†’ 100644
  1 +//
  2 +// debug.xcconfig
  3 +// openbr
  4 +//
  5 +// Created by user on 1/19/14.
  6 +//
  7 +//
  8 +
  9 +ARCHS = "$(ARCHS_STANDARD)";
  10 +ONLY_ACTIVE_ARCH = YES;
... ...
opencv.xcconfig 0 โ†’ 100644
  1 +//
  2 +// opencv.xcconfig
  3 +// openbr
  4 +//
  5 +// Created by user on 1/19/14.
  6 +//
  7 +//
... ...
release.xcconfig 0 โ†’ 100644
  1 +//
  2 +// release.xcconfig
  3 +// openbr
  4 +//
  5 +// Created by user on 1/19/14.
  6 +//
  7 +//
  8 +ARCHS = "$(ARCHS_STANDARD)";
  9 +ONLY_ACTIVE_ARCH = YES;
0 10 \ No newline at end of file
... ...