EVC如何调试LIB

举例来说:写一个LIB,内有func(),func2(),func3()三个函数,声明在Lib.h中,一切完备后。再出成一个MainMenu.EXE文件,引用这个LIB的测试文件,如下所示: void main() { func(); func2(); func3(); } 加入你的那个LIB,编译。 成功后,回到你的LIB工程,在它的Project->setting->debug->General的Local executable path and file name中,写入刚才建的MainMenu.exe(可以使用后面的小三角称号进行浏览)。同时Project->setting->debug->General的Remoate executable path and file name中会出现对应模拟器或设备上MainMenu.exe的全路径。 运行LIB,设断点,开始调试。

你可能感兴趣的:(File,测试,Path)