From 3fe77ec86cb4b1b839f609c2cbcb699097e72477 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 27 May 2025 20:59:47 +0300 Subject: [PATCH] wscript: remove msdev.py generator (Visual Studio project still can be generated using msvs.py) --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 03032afe..a1029d46 100644 --- a/wscript +++ b/wscript @@ -128,7 +128,7 @@ REFDLLS = [ ] def options(opt): - opt.load('reconfigure compiler_optimizations xshlib xcompile compiler_cxx compiler_c sdl2 clang_compilation_database strip_on_install waf_unit_test msdev msvs subproject') + opt.load('reconfigure compiler_optimizations xshlib xcompile compiler_cxx compiler_c sdl2 clang_compilation_database strip_on_install waf_unit_test msvs subproject') grp = opt.add_option_group('Common options') @@ -225,7 +225,7 @@ def configure(conf): if conf.env.COMPILER_CC == 'msvc': conf.load('msvc_pdb') - conf.load('msvs msdev subproject clang_compilation_database strip_on_install waf_unit_test enforce_pic force_32bit') + conf.load('msvs subproject clang_compilation_database strip_on_install waf_unit_test enforce_pic force_32bit') if conf.env.MSVC_TARGETS[0] == 'amd64_x86' or conf.env.MSVC_TARGETS[0] == 'x86': conf.env.MSVC_SUBSYSTEM = 'WINDOWS,5.01'