This package provides a set of tools to make use of C++20 coroutines with Qt.
![[Note]](../images/note.png) 
          Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
Download (HTTP): https://github.com/danvratil/qcoro/archive/v0.12.0/qcoro-0.12.0.tar.gz
Download MD5 sum: 60c26d10ba0ef5a593a8b0011674939c
Download size: 160 KB
Estimated disk space required: 10 MB (Add 19 MB for tests)
Estimated build time: 0.4 SBU (Using parallelism=4; add 0.6 SBU for tests)
Install qcoro by running the following commands:
mkdir build &&
cd    build &&
cmake -D CMAKE_INSTALL_PREFIX=$QT6DIR \
      -D CMAKE_BUILD_TYPE=Release     \
      -D BUILD_TESTING=OFF            \
      -D QCORO_BUILD_EXAMPLES=OFF     \
      -D BUILD_SHARED_LIBS=ON         \
       ..                             &&
make
        To test this package, remove the 'BUILD_TESTING=OFF' parameter above and run:
make test
          Now, as the root user:
        
make install
          -D
          CMAKE_BUILD_TYPE=Release: This switch is used to apply
          a higher level of compiler optimizations.