Re: [CMake] build step is not thread-safe for CMake

2020-02-11 Thread Eric Doenges
Am 10.02.20 um 14:23 schrieb Kyle Edwards via CMake: On Mon, 2020-02-10 at 12:49 +, hex wrote: hello, My build step is not thread-safe (the instruction in the COMMAND part). Every build step depends on one source file: add_custom_command(     DEPENDS on_source.file     OUTPUT   

Re: [CMake] build step is not thread-safe for CMake

2020-02-10 Thread Kyle Edwards via CMake
On Mon, 2020-02-10 at 12:49 +, hex wrote: > hello, > > My build step is not thread-safe (the instruction in the COMMAND > part). Every build step depends on one source file: > > add_custom_command( >     DEPENDS on_source.file >     OUTPUT >     object_file_for_source_file

[CMake] build step is not thread-safe for CMake

2020-02-10 Thread hex
hello, My build step is not thread-safe (the instruction in the COMMAND part). Every build step depends on one source file: /add_custom_command(// //    DEPENDS on_source.file// //    OUTPUT// //    object_file_for_source_file// //    COMMAND not-thread-safe-compiler