[CMake] FindICU.cmake setting ICU_FOUND to "FALSE" with quotes?

2020-02-10 Thread Kent Williams
I was trying to do this: find_package(ICU 59.1 QUIET COMPONENTS data i18n io tu uc ) if(ICU_FOUND)   include_directories(BEFORE ${ICU_INCLUDE_DIRS})   message("ICU_LIBRARIES=${ICU_LIBRARIES}") endif() And at configuration time, ICU_FOUND was turning up with double quotes around it, and as we

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