Skip to content

Commit

Permalink
CMakeLists fix for checks
Browse files Browse the repository at this point in the history
  • Loading branch information
danoli3 committed Jul 30, 2024
1 parent f934c9f commit fa1b4bb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ option(BUILD_WEBP "Build webp from source or link" ON)
option(BUILD_LIBRAWLITE "Build librawlite from source or link" OFF)
option(BUILD_OPENEXR "Build OpenEXR from source or link" OFF)

include(CheckTypeSize)
include(CheckFunctionExists)
include(CheckIncludeFile)
include(CheckCSourceCompiles)

if(BUILD_SHARED_LIBS)
message(STATUS "Building FreeImage as a shared library.")
else()
Expand Down

0 comments on commit fa1b4bb

Please sign in to comment.