summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>2014-01-31 13:42:10 +0100
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>2014-01-31 13:42:10 +0100
commit11968937b90d4cf3f84edcb4bad1e7b84a6fb061 (patch)
tree890fbb1dbe7a02d103ae89ac5605bd5e256c13d3 /cmake
parent70833645706d167b351e1b0f65bfe8ec3da1efe9 (diff)
downloadwayland-ivi-extension-11968937b90d4cf3f84edcb4bad1e7b84a6fb061.tar.gz
removed obsolete code and build scripts
- removed LayerSceneDescriptionExample - removed LayerManagerUtils - removed config project - updated build system Signed-off-by: Timo Lotterbach <timo.lotterbach@bmw-carit.de>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/CMakeVersions.txt58
-rw-r--r--cmake/modules/CustomMacros.txt49
-rw-r--r--cmake/modules/DefaultSettings.txt101
-rw-r--r--cmake/modules/FindAutomotiveDlt.cmake48
-rw-r--r--cmake/modules/FindCairo.cmake40
-rw-r--r--cmake/modules/FindDBUS.cmake54
-rw-r--r--cmake/modules/FindDRM.cmake66
-rw-r--r--cmake/modules/FindEGL.cmake39
-rw-r--r--cmake/modules/FindGLESv2.cmake39
-rw-r--r--cmake/modules/FindGLX.cmake39
-rw-r--r--cmake/modules/FindPixman.cmake40
11 files changed, 0 insertions, 573 deletions
diff --git a/cmake/modules/CMakeVersions.txt b/cmake/modules/CMakeVersions.txt
deleted file mode 100644
index 6dda282..0000000
--- a/cmake/modules/CMakeVersions.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-############################################################################
-#
-# Copyright 2010, 2011 BMW Car IT GmbH
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-set( ${PROJECT_NAME}_MAJOR_VERSION 0 )
-set( ${PROJECT_NAME}_MINOR_VERSION 9 )
-set( ${PROJECT_NAME}_PATCH_LEVEL 9 )
-set( ${PROJECT_NAME}_RELEASE release )
-
-set(VERSION ${${PROJECT_NAME}_MAJOR_VERSION}.${${PROJECT_NAME}_MINOR_VERSION}.${${PROJECT_NAME}_PATCH_LEVEL}.${${PROJECT_NAME}_RELEASE})
-
-if(NOT DEFINED ILM_VERSION)
-
-execute_process(COMMAND git describe --tags WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
- RESULT_VARIABLE RESULT_VAR
- OUTPUT_VARIABLE ILM_VERSION
- OUTPUT_STRIP_TRAILING_WHITESPACE
- ERROR_QUIET)
-
-if(NOT "${RESULT_VAR}" STREQUAL 0)
-
-message(STATUS "Unable launch automatic version build! Using default version!")
-set(ILM_VERSION ${VERSION})
-
-else(NOT "${RESULT_VAR}" STREQUAL 0)
-
-string(REPLACE "-" "_" ILM_VERSION ${ILM_VERSION})
-
-endif(NOT "${RESULT_VAR}" STREQUAL 0)
-
-endif(NOT DEFINED ILM_VERSION)
-
-set(LICENSE "APACHE 2.0")
-
-set(GENIVI_PROJECT_VERSION ${VERSION})
-message(STATUS
- "Build for Version ${VERSION} build ${ILM_VERSION}"
- )
-
-##################### RPM CONFIG ########################
-set(GENIVI_RPM_RELEASE "${ILM_VERSION}")
-set(SPEC_DIR ".")
-#########################################################
diff --git a/cmake/modules/CustomMacros.txt b/cmake/modules/CustomMacros.txt
deleted file mode 100644
index d779238..0000000
--- a/cmake/modules/CustomMacros.txt
+++ /dev/null
@@ -1,49 +0,0 @@
-############################################################################
-#
-# Copyright 2010-2012 BMW Car IT GmbH
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-MACRO(add_subdirectory_once path)
- get_filename_component(subdir ${path} NAME)
- if (NOT ${subdir}_already_built)
- set(${subdir}_already_built 1)
- add_subdirectory(${path})
- endif (NOT ${subdir}_already_built)
-ENDMACRO(add_subdirectory_once)
-
-MACRO(project_type mode)
- string(TOUPPER ${mode} mode_capital)
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${COMPILER_FLAGS_${mode_capital}}")
- set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS}")
-
- if (mode_capital STREQUAL "PLUGIN" AND WITH_STATIC_LIBRARIES)
- set (STATICALLY_LINKED_PLUGINS ${STATICALLY_LINKED_PLUGINS}
- ${PROJECT_NAME} CACHE INTERNAL "list of static plugins")
- endif (mode_capital STREQUAL "PLUGIN" AND WITH_STATIC_LIBRARIES)
-
-ENDMACRO(project_type)
-
-MACRO(export_build_flag name description)
- set (descLine "/* ${description} */")
- set (nameLine "#cmakedefine ${name}")
- SET(BUILD_FLAG_LIST "${BUILD_FLAG_LIST};${descLine};${nameLine}; " CACHE INTERNAL "")
- SET(BUILD_FLAG_ARRAY "${BUILD_FLAG_ARRAY};${name}" CACHE INTERNAL "")
-ENDMACRO(export_build_flag)
-
-MACRO(build_flag name description defaultvalue)
- export_build_flag(${name} "${description}")
- option (${name} "${description}" ${defaultvalue})
-ENDMACRO(build_flag)
diff --git a/cmake/modules/DefaultSettings.txt b/cmake/modules/DefaultSettings.txt
deleted file mode 100644
index 783fcc3..0000000
--- a/cmake/modules/DefaultSettings.txt
+++ /dev/null
@@ -1,101 +0,0 @@
-############################################################################
-#
-# Copyright 2012 BMW Car IT GmbH
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-#==============================================================================
-# set default build type, if not defined by user
-#==============================================================================
-if (NOT CMAKE_BUILD_TYPE)
- set(CMAKE_BUILD_TYPE Release CACHE STRING
- "Choose build type: Debug, Release, RelWithDebInfo, MinSizeRel."
- FORCE)
- message(STATUS "Build type not defined. Using default build type 'Release'.")
-endif (NOT CMAKE_BUILD_TYPE)
-
-#==============================================================================
-# define shared library build mode
-#==============================================================================
-if (WITH_STATIC_LIBRARIES)
- set (LIBRARY_BUILDMODE "STATIC")
-else (WITH_STATIC_LIBRARIES)
- set (LIBRARY_BUILDMODE "SHARED")
-endif (WITH_STATIC_LIBRARIES)
-
-
-#==============================================================================
-# default compiler flags (and why we set them)
-#
-# -fPIC enable position independent code. required for
-# (at least) Linux 64bit builds
-#
-# -Wno-variadic-macros required by google test framework
-#
-# -Wno-sign-compare required by google test framework
-#
-# -Wall enable all default compiler warnings
-#
-# -Wextra enable more strict compiler warnings
-#
-# -Wpedantic enable ISO C++ compliance warnings, aims for
-# best portability
-#
-# -Wno-long-long ISO C++ does not provide long long support,
-# but the use of long long is a widely accepted
-# solution
-#
-# -Wno-unused-function LayerManagement has a function, that is not used by
-# reference plugins, which turns into a warning
-# during compilation. This function can be used by
-# other implementations and will stay in the code.
-#==============================================================================
-set (COMPILER_FLAGS_3RDPARTY "-fPIC -Wno-variadic-macros -Wno-sign-compare")
-set (COMPILER_FLAGS_TEST "-fPIC -Wno-variadic-macros -Wno-sign-compare")
-set (COMPILER_FLAGS_EXAMPLE "-fPIC -Wall -Wextra")
-set (COMPILER_FLAGS_PLUGIN "-fPIC -Wall -Wextra -pedantic -Wno-long-long -Wno-unused-function")
-set (COMPILER_FLAGS_CORE "-fPIC -Wall -Wextra -pedantic -Wno-long-long -Wno-unused-function")
-
-
-#==============================================================================
-# set default build parameters
-#==============================================================================
-include_directories(
- ${CMAKE_SOURCE_DIR}/config
- ${CMAKE_SOURCE_DIR}/3rdParty
- ${CMAKE_SOURCE_DIR}/LayerManagerClient/ilmCommon/include
-)
-
-
-#==============================================================================
-# Internal global settings not available to user
-#==============================================================================
-set (STATICALLY_LINKED_PLUGINS "" CACHE INTERNAL "list of static plugins")
-set (BUILD_FLAG_LIST "" CACHE INTERNAL "list of build flag names")
-set (BUILD_FLAG_ARRAY "" CACHE INTERNAL "array of build flags for logging")
-
-
-#==============================================================================
-# cppcheck configuration
-#==============================================================================
-set (CPPCHECK_CONFIG
- --quiet
- --enable=performance,portability
- --template='{file}:{line}: warning: {message} [{severity}]'
-)
-
-FOREACH (ARG ${CPPCHECK_CONFIG})
- set (CPPCHECK_CONFIG_STRING "${CPPCHECK_CONFIG_STRING} ${ARG}")
-ENDFOREACH(ARG)
diff --git a/cmake/modules/FindAutomotiveDlt.cmake b/cmake/modules/FindAutomotiveDlt.cmake
deleted file mode 100644
index b436af6..0000000
--- a/cmake/modules/FindAutomotiveDlt.cmake
+++ /dev/null
@@ -1,48 +0,0 @@
-############################################################################
-#
-# Copyright 2012, BMW AG
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-FIND_PACKAGE(PkgConfig)
-IF (PKG_CONFIG_FOUND)
-# added aditional pkg config check to find dbus dependend includes
- pkg_check_modules(DLT_PKG_PATHS automotive-dlt)
-ENDIF (PKG_CONFIG_FOUND)
-
-
-FIND_PATH(DLT_INCLUDE_DIR dlt/dlt.h
-${DLT_PKG_PATHS_INCLUDE_DIRS}
-/usr/include
-)
-
-
-FIND_LIBRARY(DLT_LIBRARY
-NAMES dlt
-PATHS /lib
-)
-
-SET( DLT_FOUND "NO" )
-IF(DLT_LIBRARY)
- SET( DLT_FOUND "YES" )
- message(STATUS "Found Dlt libs: ${DLT_LIBRARY}")
- message(STATUS "Found Dlt includes: ${DLT_INCLUDE_DIR}")
-ENDIF(DLT_LIBRARY)
-
-MARK_AS_ADVANCED(
- DLT_INCLUDE_DIR
- DLT_LIBRARY
-)
diff --git a/cmake/modules/FindCairo.cmake b/cmake/modules/FindCairo.cmake
deleted file mode 100644
index 663029b..0000000
--- a/cmake/modules/FindCairo.cmake
+++ /dev/null
@@ -1,40 +0,0 @@
-############################################################################
-#
-# Copyright 2010, 2011 BMW Car IT GmbH
-# Copyright (C) 2011 DENSO CORPORATION and Robert Bosch Car Multimedia Gmbh
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-FIND_PATH(CAIRO_INCLUDE_DIR cairo.h
-/usr/include/cairo
-)
-
-FIND_LIBRARY(CAIRO_LIBRARIES
-NAMES cairo
-PATHS /usr/lib
-)
-
-SET( CAIRO_FOUND "NO" )
-IF(CAIRO_LIBRARIES)
- SET( CAIRO_FOUND "YES" )
- message(STATUS "Found cairo libs: ${CAIRO_LIBRARIES}")
- message(STATUS "Found cairo includes: ${CAIRO_INCLUDE_DIR}")
-ENDIF(CAIRO_LIBRARIES)
-
-MARK_AS_ADVANCED(
- CAIRO_INCLUDE_DIR
- CAIRO_LIBRARIES
-)
diff --git a/cmake/modules/FindDBUS.cmake b/cmake/modules/FindDBUS.cmake
deleted file mode 100644
index f7ace63..0000000
--- a/cmake/modules/FindDBUS.cmake
+++ /dev/null
@@ -1,54 +0,0 @@
-############################################################################
-#
-# Copyright 2010, 2011 BMW Car IT GmbH
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-FIND_PACKAGE(PkgConfig)
-IF (PKG_CONFIG_FOUND)
-# added aditional pkg config check to find dbus dependend includes
- pkg_check_modules(DBUS_PKG_PATHS dbus-1)
-ENDIF (PKG_CONFIG_FOUND)
-
-
-FIND_PATH(DBUS_INCLUDE_DIR dbus/dbus.h
-${DBUS_PKG_PATHS_INCLUDE_DIRS}
-/usr/include/dbus-1.0
-)
-
-FIND_PATH(DBUS_ARCH_INCLUDE_DIR dbus/dbus-arch-deps.h
-${DBUS_PKG_PATHS_INCLUDE_DIRS}
-/usr/lib/dbus-1.0/include
-)
-
-FIND_LIBRARY(DBUS_LIBRARY
-NAMES dbus-1
-PATHS /lib
-)
-
-SET( DBUS_FOUND "NO" )
-IF(DBUS_LIBRARY)
- SET( DBUS_FOUND "YES" )
- message(STATUS "Found DBUS libs: ${DBUS_LIBRARY}")
- message(STATUS "Found DBUS includes: ${DBUS_INCLUDE_DIR}")
- message(STATUS "Found DBUS arch dependent includes: ${DBUS_ARCH_INCLUDE_DIR}")
-ENDIF(DBUS_LIBRARY)
-
-MARK_AS_ADVANCED(
- DBUS_INCLUDE_DIR
- DBUS_ARCH_INCLUDE_DIR
- DBUS_LIBRARY
-)
diff --git a/cmake/modules/FindDRM.cmake b/cmake/modules/FindDRM.cmake
deleted file mode 100644
index f8cc55e..0000000
--- a/cmake/modules/FindDRM.cmake
+++ /dev/null
@@ -1,66 +0,0 @@
-############################################################################
-#
-# Copyright 2010, 2011 BMW Car IT GmbH
-# Copyright (C) 2011 DENSO CORPORATION and Robert Bosch Car Multimedia Gmbh
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-FIND_PATH(UDEV_INCLUDE_DIR /libudev.h
-/usr/include
-)
-
-FIND_LIBRARY(UDEV_LIBRARIES
-NAMES udev
-PATHS /usr/lib
-)
-
-FIND_PATH(GBM_INCLUDE_DIR /gbm.h
-/usr/include
-)
-
-FIND_LIBRARY(GBM_LIBRARIES
-NAMES gbm
-PATHS /usr/lib
-)
-
-FIND_PATH(DRM_INCLUDE_DIR /drm.h
-/usr/include/libdrm /usr/include/drm
-)
-
-FIND_LIBRARY(DRM_LIBRARIES
-NAMES drm
-PATHS /usr/lib
-)
-
-SET( DRM_FOUND "NO" )
-IF(UDEV_LIBRARIES AND GBM_LIBRARIES AND DRM_LIBRARIES)
- SET( DRM_FOUND "YES" )
- message(STATUS "Found udev libs: ${UDEV_LIBRARIES}")
- message(STATUS "Found udev includes: ${UDEV_INCLUDE_DIR}")
- message(STATUS "Found gbm libs: ${GBM_LIBRARIES}")
- message(STATUS "Found gbm includes: ${GBM_INCLUDE_DIR}")
- message(STATUS "Found drm includes: ${DRM_INCLUDE_DIR}")
- message(STATUS "Found drm libs: ${DRM_LIBRARIES}")
-ENDIF(UDEV_LIBRARIES AND GBM_LIBRARIES AND DRM_LIBRARIES)
-
-MARK_AS_ADVANCED(
- UDEV_INCLUDE_DIR
- UDEV_LIBRARIES
- GBM_INCLUDE_DIR
- GBM_LIBRARIES
- DRM_INCLUDE_DIR
- DRM_LIBRARIES
-)
diff --git a/cmake/modules/FindEGL.cmake b/cmake/modules/FindEGL.cmake
deleted file mode 100644
index 8a43ec7..0000000
--- a/cmake/modules/FindEGL.cmake
+++ /dev/null
@@ -1,39 +0,0 @@
-############################################################################
-#
-# Copyright 2010, 2011 BMW Car IT GmbH
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-FIND_PATH(EGL_INCLUDE_DIR EGL/egl.h
-/usr/include
-)
-
-FIND_LIBRARY(EGL_LIBRARY
-NAMES EGL
-PATHS
-)
-
-SET( EGL_FOUND "NO" )
-IF(EGL_LIBRARY)
- SET( EGL_FOUND "YES" )
- message(STATUS "Found EGL libs: ${EGL_LIBRARY}")
- message(STATUS "Found EGL includes: ${EGL_INCLUDE_DIR}")
-ENDIF(EGL_LIBRARY)
-
-MARK_AS_ADVANCED(
- EGL_INCLUDE_DIR
- EGL_LIBRARY
-)
diff --git a/cmake/modules/FindGLESv2.cmake b/cmake/modules/FindGLESv2.cmake
deleted file mode 100644
index 8f7e6e5..0000000
--- a/cmake/modules/FindGLESv2.cmake
+++ /dev/null
@@ -1,39 +0,0 @@
-############################################################################
-#
-# Copyright 2010, 2011 BMW Car IT GmbH
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-FIND_PATH(GLESv2_INCLUDE_DIR GLES2/gl2.h
-/usr/include
-)
-
-FIND_LIBRARY(GLESv2_LIBRARIES
-NAMES GLESv2
-PATHS
-)
-
-SET( GLESv2_FOUND "NO" )
-IF(GLESv2_LIBRARIES)
- SET( GLESv2_FOUND "YES" )
- message(STATUS "Found GLESv2 libs: ${GLESv2_LIBRARIES}")
- message(STATUS "Found GLESv2 includes: ${GLESv2_INCLUDE_DIR}")
-ENDIF(GLESv2_LIBRARIES)
-
-MARK_AS_ADVANCED(
- GLESv2_INCLUDE_DIR
- GLESv2_LIBRARIES
-)
diff --git a/cmake/modules/FindGLX.cmake b/cmake/modules/FindGLX.cmake
deleted file mode 100644
index 72b88d4..0000000
--- a/cmake/modules/FindGLX.cmake
+++ /dev/null
@@ -1,39 +0,0 @@
-############################################################################
-#
-# Copyright 2010, 2011 BMW Car IT GmbH
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-FIND_PATH(GLX_INCLUDE_DIR GL/glx.h
-/usr/include
-)
-
-FIND_LIBRARY(GLX_LIBRARIES
-NAMES GL
-PATHS /usr/lib /usr/local/lib
-)
-
-SET( GLX_FOUND "NO" )
-IF(GLX_LIBRARIES)
- SET( GLX_FOUND "YES" )
- message(STATUS "Found GLX libs: ${GLX_LIBRARIES}")
- message(STATUS "Found GLX includes: ${GLX_INCLUDE_DIR}")
-ENDIF(GLX_LIBRARIES)
-
-MARK_AS_ADVANCED(
- GLX_INCLUDE_DIR
- GLX_LIBRARIES
-)
diff --git a/cmake/modules/FindPixman.cmake b/cmake/modules/FindPixman.cmake
deleted file mode 100644
index 5e892be..0000000
--- a/cmake/modules/FindPixman.cmake
+++ /dev/null
@@ -1,40 +0,0 @@
-############################################################################
-#
-# Copyright (C) 2013 DENSO CORPORATION
-#
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-############################################################################
-
-FIND_PATH(PIXMAN_INCLUDE_DIR pixman.h
-/usr/include/pixman-1
-/include/pixman-1
-)
-
-FIND_LIBRARY(PIXMAN_LIBRARIES
-NAMES pixman-1
-PATHS /usr/lib
-)
-
-SET( PIXMAN_FOUND "NO" )
-IF(PIXMAN_LIBRARIES)
- SET( PIXMAN_FOUND "YES" )
- message(STATUS "Found pixman libs: ${PIXMAN_LIBRARIES}")
- message(STATUS "Found pixman includes: ${PIXMAN_INCLUDE_DIR}")
-ENDIF(PIXMAN_LIBRARIES)
-
-MARK_AS_ADVANCED(
- PIXMAN_INCLUDE_DIR
- PIXMAN_LIBRARIES
-)