forked from blender/blender
Currently on Windows some dependencies are built with MinGW/GCC 3.x this commit removes that, in favor of building them with MSVC via msys2. This will make it easier in the future to offer Win/Arm64 builds of blender. Notable changes: - This change drops support for the external libxvid library in favor of ffmpegs built in support for this format. This has been done with permission from the VFX module. Pull Request: blender/blender#108983 blender/blender#105502
13 lines
437 B
Diff
13 lines
437 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 17ee3fc2..9027d073 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -16,7 +16,6 @@ string(REGEX
|
|
message(STATUS "Opus project version: ${PROJECT_VERSION}")
|
|
|
|
project(Opus LANGUAGES C VERSION ${PROJECT_VERSION})
|
|
-include(opus_buildtype.cmake)
|
|
|
|
option(OPUS_STACK_PROTECTOR "Use stack protection" ON)
|
|
option(OPUS_USE_ALLOCA "Use alloca for stack arrays (on non-C99 compilers)" OFF)
|