Error trying to build Objective-C++ on Windows

2014-05-16 Thread Doug Simons
I'm getting a "No rule to make target" error when trying to compile some Objective-C++ files that I just added to my project on Windows. I haven't used Objective-C++ previously, so I googled around to find out what I need to do. I added a _OBJCC_FILES section to list my .mm files, and also "CC=

Re: Error trying to build Objective-C++ on Windows

2014-05-16 Thread Ivan Vučica
Some rules are built into GNU Make. This: https://www.gnu.org/software/make/manual/html_node/Catalogue-of-Rules.html suggests you should run "make -p" in a directory with no makefile to check what rules are available. If the rule doesn't exist, it should be trivial to add it and even make it op