如何更改生成的 Visual Studio 文件中 CTest 运行的目录
我目前在使用 CMake 生成的 RUN_TESTS 项目时更改目录 CTest 时遇到问题。当前 CMAKE_RUNTIME_OUTPUT_DIRECTORY 设置为自定义路径。因此,当 CTest 尝试运行时,它是从不包含二进制文件的目录中执行的。
作为临时解决方法,我使用 ${RUNTIME_OUTPUT_DIRECTORY}\test 调用 ADD_TEST 但我不确定这是否是正确的解决方案。有没有更好的方法更改 CTest 使用的默认目录?
I am currently having trouble changing the directory CTest in when using the RUN_TESTS project generated by CMake. Currently CMAKE_RUNTIME_OUTPUT_DIRECTORY is set to a custom path. As a result when CTest attempts to run, it is doing so from a directory that contains no binaries.
As a temporary workaround I am calling ADD_TEST using ${RUNTIME_OUTPUT_DIRECTORY}\test but I am not sure if this is the correct solution. Is there a way a better way change the default directory used by CTest?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 ADD_EXECUTABLE 目标是
my_exe
且您的测试名称为my_test
,您应该能够调用ADD_TEST
,如下所示:有关更多信息,请运行
If your ADD_EXECUTABLE target is say
my_exe
and your test namemy_test
, you should be able to callADD_TEST
like:For further info, run