You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this lesson you will learn how to use BLT and CMake to build an executable.
3
+
In this lesson, you will learn how to use BLT and CMake to configure a
4
+
software project to build. RAJA and Umpire use BLT and CMake as their build
5
+
systems, and so does this tutorial.
4
6
5
-
RAJA and Umpire use BLT and CMake as their build systems, and we recommend them
6
-
for other applications, like this tutorial! CMake uses information in a set of
7
-
CMakeLists.txt files to generate files to build your project. In this case,
8
-
we will be using the `make` program to actually compile everything.
7
+
[CMake](https://cmake.org/) is a common tool for building C++ projects and is
8
+
used throughout the world. It uses information in `CMakeLists.txt` files located in a software project to generate configuration files to build a code project
9
+
on a particular system. Then, a utility like `make` can be used to compile
10
+
the code.
9
11
10
-
BLT provides a set of CMake macros that make it easy to write CMake code for HPC
0 commit comments