From e86e0a09a1586a3c98724460ad4b1941fc5daed3 Mon Sep 17 00:00:00 2001 From: APTX Date: Thu, 1 Feb 2018 23:49:08 +0900 Subject: [PATCH] Fix typo preventing runscript from being built --- CMakeLists.txt | 2 +- runscript/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 91666c4..a0202b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ if(${WITH_TOOLS}) add_subdirectory(import-mylist) add_subdirectory(play-next) endif() -if(${WITH_SCRIPT}) +if(${WITH_RUNSCRIPT}) add_subdirectory(runscript) endif() diff --git a/runscript/CMakeLists.txt b/runscript/CMakeLists.txt index 5a519ed..0cf23e5 100644 --- a/runscript/CMakeLists.txt +++ b/runscript/CMakeLists.txt @@ -4,12 +4,12 @@ set(QT_MIN_VERSION "5.3.0") find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core - Script + Script ) set(runscript_LIBS Qt5::Core - Qt5::Script + Qt5::Script LocalMyList::LocalMyList ) -- 2.52.0