From: APTX Date: Thu, 1 Feb 2018 14:49:08 +0000 (+0900) Subject: Fix typo preventing runscript from being built X-Git-Url: https://gitweb.aptx.org/?a=commitdiff_plain;h=e86e0a09a1586a3c98724460ad4b1941fc5daed3;p=localmylist.git Fix typo preventing runscript from being built --- 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 )