diff --git a/3rdParty/CMakeLists.txt b/3rdParty/CMakeLists.txt index df0da1c..057f04b 100644 --- a/3rdParty/CMakeLists.txt +++ b/3rdParty/CMakeLists.txt @@ -7,9 +7,9 @@ add_subdirectory(spdlog) add_subdirectory(magic-enum) add_subdirectory(yaml-cpp) add_subdirectory(pugixml) -add_subdirectory(PlatformFolders) add_subdirectory(stb) add_subdirectory(eigen) +add_subdirectory(utfcpp) file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/deps) execute_process( diff --git a/3rdParty/PlatformFolders/CMakeLists.txt b/3rdParty/PlatformFolders/CMakeLists.txt deleted file mode 100644 index ef5b5b2..0000000 --- a/3rdParty/PlatformFolders/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -include(FetchContent) - -FetchContent_Declare( - platform_folders - GIT_REPOSITORY https://github.com/sago007/PlatformFolders.git - GIT_TAG 4.2.0 - GIT_SHALLOW TRUE -) -set(PLATFORMFOLDERS_BUILD_TESTING OFF) -FetchContent_MakeAvailable(platform_folders) \ No newline at end of file diff --git a/3rdParty/utfcpp/CMakeLists.txt b/3rdParty/utfcpp/CMakeLists.txt new file mode 100644 index 0000000..d333dc3 --- /dev/null +++ b/3rdParty/utfcpp/CMakeLists.txt @@ -0,0 +1,12 @@ +include(FetchContent) + +FetchContent_Declare( + utfcpp + GIT_REPOSITORY https://github.com/nemtrif/utfcpp.git + GIT_TAG v3.1.2 + GIT_SHALLOW TRUE +) +set(UTF8_TESTS OFF) +set(UTF8_INSTALL OFF) +set(UTF8_SAMPLES OFF) +FetchContent_MakeAvailable(utfcpp)