From d90340d76a23683999ef288b10acb97e01018733 Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Fri, 14 Jul 2023 22:05:02 +0100 Subject: [PATCH] Add `apps/pwl` to CMake --- src/apps/pwl/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/apps/pwl/CMakeLists.txt diff --git a/src/apps/pwl/CMakeLists.txt b/src/apps/pwl/CMakeLists.txt new file mode 100644 index 00000000..2963bf57 --- /dev/null +++ b/src/apps/pwl/CMakeLists.txt @@ -0,0 +1,4 @@ +file (GLOB headers "*.h") +file (GLOB sources "*.cpp") + +add_library (apps_pwl STATIC ${sources} ${headers})