Re: [CMake] Handling real-time output from execute_process

2018-12-22 Thread Person Withhats
Fixed extra spaces, was due to buffer (had to strip line endings). I'mma make a new thread this mess is my fault. On Sat, Dec 22, 2018 at 11:03 AM Person Withhats wrote: > Oops, forgot to add mailing list. > > Also, here's some sample CMake output that shows some issues. > 1) Carrige return does

Re: [CMake] Handling real-time output from execute_process

2018-12-22 Thread Person Withhats
Cmake GUI output* On Sat, Dec 22, 2018 at 11:03 AM Person Withhats wrote: > Oops, forgot to add mailing list. > > Also, here's some sample CMake output that shows some issues. > 1) Carrige return doesn't replace previous line of output == tons of %'s > 2) Perhaps cuz I'm forcing no buffer in CMa

Re: [CMake] Handling real-time output from execute_process

2018-12-22 Thread Person Withhats
Oops, forgot to add mailing list. Also, here's some sample CMake output that shows some issues. 1) Carrige return doesn't replace previous line of output == tons of %'s 2) Perhaps cuz I'm forcing no buffer in CMake it causes the below extra 2 new lines on each line of output?? Should be condensed

Re: [CMake] Handling real-time output from execute_process

2018-12-21 Thread frodak17
On Fri, Dec 21, 2018 at 11:16 PM Person Withhats wrote: > 1) I want output in real time on a Windows system(no tail), and piping > output to a file then reading it is a very poor solution. 'just check the > contents in note pad' > 2) This is a general-purpose solution and not something I'm ma

Re: [CMake] Handling real-time output from execute_process

2018-12-21 Thread Person Withhats
1) I want output in real time on a Windows system(no tail), and piping output to a file then reading it is a very poor solution. 'just check the contents in note pad' 2) This is a general-purpose solution and not something I'm making just for myself, hacky fixes are not an option. On Fri, Dec

Re: [CMake] Handling real-time output from execute_process

2018-12-21 Thread frodak17
On Fri, Dec 21, 2018 at 8:30 PM Person Withhats wrote: > Hey there! > > I'm running a script that downloads some files and untars them. This takes > a while but it outputs progress. Unfortunately I can't get the output to > show up in real-time with CMake GUI or CLI. > > Current workaround to see

[CMake] Handling real-time output from execute_process

2018-12-21 Thread Person Withhats
Hey there! I'm running a script that downloads some files and untars them. This takes a while but it outputs progress. Unfortunately I can't get the output to show up in real-time with CMake GUI or CLI. Current workaround to see output live, loses it in log though.. execute_process(COMMAN