Hi,
I create a simple test.cpp file in my Xcode project.
#include "MyTest.h"
#include <stdio.h>
int main(int argc, char** argv) {
printf ("Calling MyTest Main\n");
}
It compiles. I think I need to create a Target and Executables before I can launch in XCode. But I need some help with these questions: 1. What kind of Target i should create for my simple .cpp file? It is not a GUI application. 2. How to specify this main in test.cpp to be the starting point of my Target and Executable?
Thank you.