From d0073b2161c5cd40c7408b16fc24063333866c63 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 31 May 2024 02:22:48 -0500 Subject: [PATCH] [jasper] Add missing install destinations --- src/jasper/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/jasper/CMakeLists.txt b/src/jasper/CMakeLists.txt index ce6b9ad..eb13f24 100644 --- a/src/jasper/CMakeLists.txt +++ b/src/jasper/CMakeLists.txt @@ -14,6 +14,11 @@ if(APPLE) set(JASPER_DIST_MODULE JasperStudio.app/Contents/Plugins) set(JASPER_DIST_RESOURCES JasperStudio.app/Contents/Resources) set(JASPER_DIST_MAC_APP_CONTENTS JasperStudio.app/Contents) +else() + set(JASPER_DIST_BIN bin) + set(JASPER_DIST_LIB lib) + set(JASPER_DIST_MODULE lib) + set(JASPER_DIST_RESOURCES share) endif() add_subdirectory(modules)