xref: /aosp_15_r20/external/sandboxed-api/contrib/turbojpeg/CMakeLists.txt (revision ec63e07ab9515d95e79c211197c445ef84cefa6a)
1# Copyright 2022 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15cmake_minimum_required(VERSION 3.13..3.26)
16
17project(turbojpeg-sapi CXX C)
18include(CTest)
19
20set(CMAKE_CXX_STANDARD 17)
21set(CMAKE_CXX_STANDARD_REQUIRED True)
22
23if(NOT TARGET sapi::sapi)
24  set(SAPI_ROOT "../.." CACHE PATH "Path to the Sandboxed API source tree")
25  add_subdirectory("${SAPI_ROOT}"
26                   "${CMAKE_BINARY_DIR}/sandboxed-api-build"
27                   EXCLUDE_FROM_ALL)
28endif()
29
30find_package(PkgConfig REQUIRED)
31pkg_check_modules(TURBOJPEG REQUIRED IMPORTED_TARGET libturbojpeg)
32
33add_sapi_library(turbojpeg_sapi
34  INPUTS "${TURBOJPEG_INCLUDEDIR}/turbojpeg.h"
35  LIBRARY turbojpeg
36  LIBRARY_NAME TurboJPEG
37  NAMESPACE "turbojpeg_sapi"
38)
39add_library(sapi_contrib::turbojpeg ALIAS turbojpeg_sapi)
40target_include_directories(turbojpeg_sapi INTERFACE
41  "${PROJECT_BINARY_DIR}"
42)
43
44if(BUILD_TESTING AND SAPI_BUILD_TESTING)
45  add_subdirectory(tests)
46endif()
47