removed install scripts

This commit is contained in:
arcan1s
2014-03-25 12:00:34 +04:00
parent 6132de0951
commit 20e744d3cd
8 changed files with 6 additions and 31 deletions

View File

@ -8,7 +8,7 @@ cmake_policy (SET CMP0015 NEW)
project (netctl-plasmoid)
set (PROJECT_VERSION_MAJOR 1)
set (PROJECT_VERSION_MINOR 0)
set (PROJECT_VERSION_PATCH 0)
set (PROJECT_VERSION_PATCH 1)
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
configure_file (${CMAKE_SOURCE_DIR}/version.h.in ${CMAKE_CURRENT_BINARY_DIR}/version.h)
@ -18,7 +18,6 @@ message (STATUS "Version: ${PROJECT_VERSION}")
option (BUILD_GUI "Build GUI" ON)
option (BUILD_DATAENGINE "Build data engine" ON)
option (BUILD_PLASMOID "Build plasmoid" ON)
option (BUILD_SCRIPTS "Build special scripts" ON)
# flags
if (CMAKE_COMPILER_IS_GNUCXX)
@ -44,6 +43,3 @@ endif ()
if (BUILD_PLASMOID)
add_subdirectory (plasmoid)
endif ()
if (BUILD_SCRIPTS)
add_subdirectory (scripts)
endif()