From 5f9505f780c6227a0c45cec90c097e657aee0a9a Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 6 Jan 2022 23:25:22 +0100 Subject: [PATCH] Added a missing CMake configuration file to build the external dependencies. --- external/.gitignore | 1 + external/CMakeLists.txt | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 external/CMakeLists.txt diff --git a/external/.gitignore b/external/.gitignore index b932b29ce..fcc707458 100644 --- a/external/.gitignore +++ b/external/.gitignore @@ -1,4 +1,5 @@ * +!CMakeLists.txt !CImg !CImg/* !glm diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt new file mode 100644 index 000000000..435bcc9ef --- /dev/null +++ b/external/CMakeLists.txt @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: MIT +# +# EmulationStation Desktop Edition +# CMakeLists.txt (external) +# +# CMake configuration for bundled dependencies built in-tree. +# + +set(BUILD_SHARED_LIBS OFF) +option(LOTTIE_MODULE OFF) +add_subdirectory("rlottie")