.. SPDX-License-Identifier: MIT .. _ln-rcppsw-setup: ================= Setting Up RCPPSW ================= .. _ln-rcppsw-setup-dev: Developer Setup =============== #. RCPPSW uses `LIBRA `_ so go to :ref:`ln-libra-req` and install any needed packages. #. Setup RCPPSW's dependencies (packages is fine, unless you'll be modifying the dependencies too): - :ref:`RCSW user setup ` #. Clone RCPPSW and init LIBRA:: git clone git@github.com:jharwell/rcppsw.git cd rcppsw git submodule update --init --remote --recursive #. Build RCPPSW. From the root of the repo:: mkdir build && cd build cmake .. make ```` is a list of cmake arguments. .. IMPORTANT:: RCPPSW and LIBRA output **VERY** thorough summaries of their build configuration, so check them to make sure you are building what you think you are. You can pass any option as part of ```` that LIBRA supports (see :ref:`ln-libra-capabilities`). RCPPSW supports the following additional options: .. list-table:: :header-rows: 1 :widths: 10 10 80 * - Argument - Possible Values - Meaning * - RCPPSW_AL_MT_SAFE_TYPES - YES/NO - Sets ``rcppsw::al::mt*`` to use ``std::atomic`` types if enabled. Otherwise, uses non-atomic versions. Default=YES.