Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.03 KB

File metadata and controls

43 lines (31 loc) · 1.03 KB

Iterative Loop module for saucer


📦 Installation

  • Using CPM

    CPMFindPackage(
      NAME           saucer-loop
      VERSION        2.0.0
      GIT_REPOSITORY "https://github.com/saucer/loop"
    )
  • Using FetchContent

    include(FetchContent)
    
    FetchContent_Declare(saucer-loop GIT_REPOSITORY "https://github.com/saucer/loop" GIT_TAG v2.0.0)
    FetchContent_MakeAvailable(saucer-loop)

Finally, link against target:

target_link_libraries(<target> saucer::loop)

📃 Usage

Warning

This module may replace the default application loop. Therefore, it is recommended to not use or call application::finish()!

For a usage example see the loop-example