本文介绍了C ++中的包含库问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好...
我有一个小问题:
假设要包含一些库,例如:"Parentlib/test1.h","Parentlib/test2.h"等.
如何以某种方式定义"Parentlib",以便"test1.h"和"test2.h"正常工作?
Hello everybody...
I have a little problem:
Suppose you want include some libraries For example: "Parentlib/test1.h" , "Parentlib/test2.h" and so on.
How can i define "Parentlib" somehow so "test1.h" and "test2.h" work? How that is possible?
推荐答案
#pragma comment( lib, "Parentlib" )
到包含您的主要功能的文件.确保链接器也知道在哪里可以找到lib文件.
最好的问候
Espen Harlinn
to the file containing your main function. Make sure that the linker knows where to find the lib file too.
Best regards
Espen Harlinn
这篇关于C ++中的包含库问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!