Skip to content

Commit

Permalink
Improve code readability in CMake integration section (#1574)
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasqueX authored Dec 3, 2024
1 parent d3b0a80 commit db883d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/GSG/integrate.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ Integrating oneTBB into your project using CMake*:

To add oneTBB to another project using CMake*, add the following commands to your ``CMakeLists.txt`` file:

.. code-block::
.. code-block:: cmake
`find_package(TBB REQUIRED)`
`target_link_libraries(my_executable TBB::tbb)`
find_package(TBB REQUIRED)
target_link_libraries(my_executable TBB::tbb)
After that, configure your project with CMake* as usual.

Expand Down

0 comments on commit db883d1

Please sign in to comment.