Skip to content

Commit

Permalink
CMake: Fix issue that led to Unicode support still defaulting to off (#…
Browse files Browse the repository at this point in the history
…1594)

Signed-off-by: itsmattkc <34096995+itsmattkc@users.noreply.github.com>
  • Loading branch information
itsmattkc committed Feb 10, 2022
1 parent 1d26d58 commit 73508eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ option(OCIO_BUILD_JAVA "Specify whether to build java bindings" OFF)

option(OCIO_WARNING_AS_ERROR "Set build error level for CI testing" OFF)

option(OCIO_USE_WINDOWS_UNICODE "On Windows only, compile with Unicode support" WIN32)
if (WIN32)
option(OCIO_USE_WINDOWS_UNICODE "Compile with Windows Unicode support" ON)
endif()


###############################################################################
Expand Down

0 comments on commit 73508eb

Please sign in to comment.