mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
72 lines
1.7 KiB
CMake
72 lines
1.7 KiB
CMake
# Copyright 2020 Google LLC
|
|
#
|
|
# 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.
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(lodepng_sapi CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED 17)
|
|
|
|
# Build static library
|
|
add_library(lodepng STATIC
|
|
lodepng/lodepng.cpp
|
|
lodepng/lodepng.h
|
|
)
|
|
|
|
# Build SAPI library
|
|
#set(SAPI_ROOT "" CACHE PATH "Path to the Sandboxed API source tree")
|
|
set(SAPI_ROOT "/usr/local/google/home/amedar/internship/sandboxed-api" CACHE PATH "Path to the Sandboxed API source tree")
|
|
|
|
|
|
add_subdirectory("${SAPI_ROOT}"
|
|
"${CMAKE_BINARY_DIR}/sandboxed-api-build"
|
|
EXCLUDE_FROM_ALL
|
|
)
|
|
|
|
add_sapi_library(
|
|
lodepng_sapi
|
|
|
|
FUNCTIONS
|
|
lodepng_decode_memory
|
|
lodepng_decode32
|
|
lodepng_decode24
|
|
|
|
lodepng_decode_file
|
|
lodepng_decode32_file
|
|
lodepng_decode24_file
|
|
|
|
lodepng_encode_memory
|
|
lodepng_encode32
|
|
lodepng_encode24
|
|
|
|
lodepng_encode_file
|
|
lodepng_encode32_file
|
|
lodepng_encode24_file
|
|
|
|
lodepng_save_file
|
|
lodepng_load_file
|
|
|
|
INPUTS lodepng/lodepng.h
|
|
LIBRARY lodepng
|
|
LIBRARY_NAME Lodepng
|
|
NAMESPACE ""
|
|
)
|
|
|
|
target_include_directories(lodepng_sapi INTERFACE
|
|
"${PROJECT_BINARY_DIR}" # To find the generated SAPI header
|
|
)
|
|
|
|
add_subdirectory(examples)
|