Skip to content

Commit

Permalink
fix: utf8 support on windows fixing build error
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMcAvoy committed Nov 6, 2024
1 parent 41f3c13 commit c21b08a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ set (CMAKE_CXX_STANDARD_REQUIRED ON)
# Project declaration
project(Jenjin)

if (WIN32)
message(STATUS "Manually enabling unicode support")
add_compile_options(/utf-8)
endif()

add_subdirectory(megasource/libs/)
add_subdirectory(engine)
add_subdirectory(jenjin)
2 changes: 1 addition & 1 deletion megasource
Submodule megasource updated 1 files
+5 −0 CMakeLists.txt

0 comments on commit c21b08a

Please sign in to comment.