instead of searching for manifest tool manually punt the job to CreateProcess

This commit is contained in:
Nikita Smith
2024-11-18 15:38:00 -08:00
parent 938be0aa84
commit e44dd3aa07
3 changed files with 10 additions and 27 deletions
-1
View File
@@ -324,7 +324,6 @@ lnk_merge_manifest_files(String8 mt_path, String8 out_name, String8List manifest
// launch mt.exe with our command line
OS_ProcessLaunchParams launch_opts = {0};
launch_opts.cmd_line = cmd_line;
launch_opts.path = str8_chop_last_slash(mt_path);
launch_opts.inherit_env = 1;
launch_opts.consoleless = 1;
OS_Handle mt_handle = os_process_launch(&launch_opts);