我如何找出我的C++程序使用的DLL?

use*_*417 3 c++ dll sdl release

即使我在发布模式下构建一个exe,当我尝试在另一台PC上执行该程序时,我发现DLL未找到错误.所以我需要找出我的程序需要哪些dll并用exe复制它们.但我似乎无法弄清楚如何找到我的程序使用的dll.

#include "SDL.h"
#include "SDL_image.h"
#include "SDL_ttf.h"
#include "SDL_mixer.h"
#include <string>
#include "head.h"
#include <cstdlib>
#include <stdio.h>
#include <stdlib.h>
#include <fstream>
#include <windows.h>
Run Code Online (Sandbox Code Playgroud)

我很确定它需要的是什么dll基于包含所以它们在这里.我知道SDL库使用了哪些,但我不知道其他库.

Aru*_*run 7

Dependency Walker可能有所帮助.看看下面的应用程序屏幕截图.

在此输入图像描述