Skip to content

Commit

Permalink
CMake Platform Fix (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
thearchivalone authored Sep 22, 2024
1 parent 541e871 commit b4a668b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,6 @@ if (WIN32)
set(SAIL_WIN32 ON)
endif()

if (UNIX)
set(SAIL_UNIX ON)
endif()

if (MINGW)
set(SAIL_MINGW ON)
endif()
Expand All @@ -209,6 +205,10 @@ if (APPLE)
set(SAIL_APPLE ON)
endif()

if (UNIX)
set(SAIL_UNIX ON)
endif()

# Codecs & icons paths
#
set(SAIL_CODECS_PATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/sail/codecs")
Expand Down

0 comments on commit b4a668b

Please sign in to comment.