Index: CMakeLists.txt =================================================================== --- CMakeLists.txt +++ CMakeLists.txt @@ -20,7 +20,7 @@ option( BUILD_TEXTDOCUMENT "Build the Grantlee textdocument library" TRUE ) option( BUILD_MAIN_PLUGINS "Build the Grantlee Templates plugins" TRUE ) option( BUILD_I18N_PLUGIN "Build the Grantlee Templates i18n plugin" TRUE ) -option( BUILD_SCRIPT_PLUGIN "Build the Grantlee Templates scriptable tags plugin" TRUE ) +option( BUILD_SCRIPT_PLUGIN "Build the Grantlee Templates scriptable tags plugin" FALSE ) option( BUILD_TESTS "Build the Grantlee tests" TRUE ) if (BUILD_TESTS) Index: templates/CMakeLists.txt =================================================================== --- templates/CMakeLists.txt +++ templates/CMakeLists.txt @@ -1,6 +1,5 @@ find_package(Qt5Core 5.2.0 REQUIRED) -find_package(Qt5Script 5.2.0) add_subdirectory(lib) @@ -18,6 +17,7 @@ if (BUILD_SCRIPT_PLUGIN) +# find_package(Qt5Script 5.2.0) # add_subdirectory(scriptabletags) endif()