-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: Add build recipe for PNG (#4423)
As requested in #4387. --------- Signed-off-by: Zach Lewis <[email protected]> Signed-off-by: Larry Gritz <[email protected]> Signed-off-by: zachlewis <[email protected]> Co-authored-by: Larry Gritz <[email protected]>
- Loading branch information
Showing
8 changed files
with
91 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Copyright Contributors to the OpenImageIO project. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# https://github.com/AcademySoftwareFoundation/OpenImageIO | ||
|
||
###################################################################### | ||
# PNG by hand! | ||
###################################################################### | ||
|
||
set_cache (PNG_BUILD_VERSION 1.6.44 "PNG version for local builds") | ||
set (PNG_GIT_REPOSITORY "https://github.com/glennrp/libpng") | ||
set (PNG_GIT_TAG "v${PNG_BUILD_VERSION}") | ||
|
||
set_cache (PNG_BUILD_SHARED_LIBS ${LOCAL_BUILD_SHARED_LIBS_DEFAULT} | ||
DOC "Should execute a local PNG build, if necessary, build shared libraries" ADVANCED) | ||
|
||
string (MAKE_C_IDENTIFIER ${PNG_BUILD_VERSION} PNG_VERSION_IDENT) | ||
|
||
unset (PNG_FOUND) | ||
unset (PNG_LIBRARIES) | ||
unset (PNG_INCLUDE_DIRS) | ||
unset (PNG_INCLUDE_DIR) | ||
unset (PNG_VERSION_STRING) | ||
unset (PNG_DEFINITIONS) | ||
unset (PNG_VERSION) | ||
|
||
build_dependency_with_cmake (PNG | ||
VERSION ${PNG_BUILD_VERSION} | ||
GIT_REPOSITORY ${PNG_GIT_REPOSITORY} | ||
GIT_TAG ${PNG_GIT_TAG} | ||
CMAKE_ARGS | ||
-D PNG_SHARED=OFF | ||
-D PNG_STATIC=ON | ||
-D PNG_EXECUTABLES=OFF | ||
-D PNG_TESTS=OFF | ||
-D PNG_TOOLS=OFF | ||
-D PNG_FRAMEWORK=OFF | ||
-D CMAKE_POSITION_INDEPENDENT_CODE=ON | ||
-D CMAKE_INSTALL_LIBDIR=lib | ||
-D PNG_PREFIX=oiio | ||
) | ||
|
||
|
||
set (PNG_REFIND FALSE) | ||
set (PNG_REFIND_VERSION ${PNG_BUILD_VERSION}) | ||
|
||
|
||
set (PNG_REFIND_ARGS EXACT REQUIRED) | ||
set (PNG_DIR ${PNG_LOCAL_INSTALL_DIR}/lib/cmake/PNG) | ||
set (PNG_FIND_VERSION_EXACT ON) | ||
|
||
if (PNG_BUILD_VERSION VERSION_GREATER 1.6.43) | ||
list (APPEND PNG_REFIND_ARGS CONFIG) | ||
endif () | ||
|
||
find_package(PNG ${PNG_REFIND_VERSION} ${PNG_REFIND_ARGS} | ||
HINTS | ||
${PNG_LOCAL_INSTALL_DIR}/lib/cmake/PNG | ||
${PNG_LOCAL_INSTALL_DIR} | ||
NO_DEFAULT_PATH | ||
) | ||
|
||
set (PNG_INCLUDE_DIRS ${PNG_LOCAL_INSTALL_DIR}/include) | ||
include_directories(BEFORE ${PNG_INCLUDE_DIRS}) | ||
|
||
if (PNG_BUILD_SHARED_LIBS) | ||
install_local_dependency_libs (PNG png) | ||
endif () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters