CMake sdl 配置
有没有办法在 CMake 中使用 sdl-config ?
Is there a way to use sdl-config in CMake?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在 CMake 中使用 sdl-config ?
Is there a way to use sdl-config in CMake?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的。只需使用
find_program()
查找它,并使用execute_process()
运行它并捕获其输出。如果您确实想测试 SDL 并在项目中使用它,CMake 附带FindSDL.cmake
,因此您只需将find_package(SDL)
放入CMakeLists.txt
然后直接访问SDL_CFLAGS
等等。Yes. Just use
find_program()
to find it andexecute_process()
to run it and capture its output. If you actually want to test for SDL and use it in your project, CMake comes withFindSDL.cmake
, so you could just putfind_package(SDL)
in yourCMakeLists.txt
and then just accessSDL_CFLAGS
and so on directly.