From ffab3cb836e695eb17e511a22dde49405240d979 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 11 Jan 2021 18:38:57 +0200 Subject: [PATCH] cmake : add install target for waver --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef499a4..f6141d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,3 +76,7 @@ add_subdirectory(src) if (GGWAVE_STANDALONE AND GGWAVE_BUILD_EXAMPLES) add_subdirectory(examples) endif() + +if (GGWAVE_SUPPORT_SDL2) + install(TARGETS waver RUNTIME DESTINATION bin) +endif()