这可能是一个非常愚蠢的问题,但我找不到指定 dll 文件路径的方法。我已经将搜索目录设置为相对于项目的根目录,它在代码块中运行良好。
问题是当我双击exe文件时找不到库。我试图设置相对于 exe 文件的路径,但仍然找不到文件。
这可能是一个非常愚蠢的问题,但我找不到指定 dll 文件路径的方法。我已经将搜索目录设置为相对于项目的根目录,它在代码块中运行良好。
问题是当我双击exe文件时找不到库。我试图设置相对于 exe 文件的路径,但仍然找不到文件。
Before code::blocks runs/debugs your program, it sets up all the required paths for your app to run. These are defined in your *.cbp file.
If you want to "double click" your exe and expect it to find your dlls, you should do one of the following:-
You will want to make use of option #1 and maybe #4 if you decide to deploy your app on other machines
HERE IS A USEFULL MSDN ARTICLE ON THE TOPIC