SimonKagstrom / kcov

Code coverage tool for compiled programs, Python and Bash which uses debugging information to collect and report data without special compilation options
http://simonkagstrom.github.io/kcov/
GNU General Public License v2.0
720 stars 110 forks source link

Mac OS X 10.13.4 - CMake Error: Xcode 1.5 not supported #261

Closed eedwards-sk closed 6 years ago

eedwards-sk commented 6 years ago
→ cmake -G Xcode ../
CMake Error:
  Xcode 1.5 not supported.
SimonKagstrom commented 6 years ago

Well, I'm unfortunately no OSX expert, but there are apparently some workarounds to be found:

https://wiki.vcmi.eu/How_to_build_VCMI_(macOS)

another alternative is to build using make, which works fine for me but some people have problems with. In that case, build as

cmake ../
make
eedwards-sk commented 6 years ago

Hah, thanks, that's the only site I found referencing the error, as well.

I'll try with make.

eedwards-sk commented 6 years ago

Building with make worked, thank you!