From f7d8b8a4345380c24de09baadb0ddc4303ee6970 Mon Sep 17 00:00:00 2001 From: koparasy Date: Wed, 26 Jun 2024 08:52:22 -0700 Subject: [PATCH] Add CMake for examples --- examples/CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 examples/CMakeLists.txt diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt new file mode 100644 index 00000000..6b1d7d0e --- /dev/null +++ b/examples/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright 2021-2023 Lawrence Livermore National Security, LLC and other +# AMSLib Project Developers +# +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + +add_subdirectory(ideal_gas) +if (WITH_CUDA) +add_subdirectory(bnm_opt) +endif() +