Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リンク前またはビルド後のイベントで CMake から .bat ファイルを実行するにはどうすればよいですか?
add_custom_commandたとえば、を使用できます
add_custom_command
if(WIN32) add_custom_command(TARGET <Your target> POST_BUILD COMMAND cmd //C <path to .bat file> <ARGS> ) endif()
add_custom_command実行 の詳細については
cmake --help-command add_custom_command