diff options
author | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2024-10-13 00:29:57 (GMT) |
---|---|---|
committer | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2024-10-13 00:29:57 (GMT) |
commit | d536184b92cfc5047cd4781eeb75c636292f453a (patch) | |
tree | 1dc2668a98a82258a945ac25749d4003cc09a9cc /testing | |
parent | dc9673c41f68d2c86e8c2af2e9e55ff39b230d5e (diff) | |
download | SCons-d536184b92cfc5047cd4781eeb75c636292f453a.zip SCons-d536184b92cfc5047cd4781eeb75c636292f453a.tar.gz SCons-d536184b92cfc5047cd4781eeb75c636292f453a.tar.bz2 |
Remove MSVSProject argument projectguid and replace with MSVS_PROJECT_GUID in all test files.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSConsMSVS.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/framework/TestSConsMSVS.py b/testing/framework/TestSConsMSVS.py index 910dfd2..e4ac3a9 100644 --- a/testing/framework/TestSConsMSVS.py +++ b/testing/framework/TestSConsMSVS.py @@ -325,7 +325,7 @@ testresources = ['test.rc'] testmisc = ['readme.txt'] env.MSVSProject(target = 'Test.vcproj', - projectguid = '%(PROJECT_GUID)s', + MSVS_PROJECT_GUID = '%(PROJECT_GUID)s', slnguid = '{SLNGUID}', srcs = testsrc, incs = testincs, @@ -453,7 +453,7 @@ testresources = ['test.rc'] testmisc = ['readme.txt'] env.MSVSProject(target = 'Test.vcproj', - projectguid = '%(PROJECT_GUID)s', + MSVS_PROJECT_GUID = '%(PROJECT_GUID)s', slnguid = '{SLNGUID}', srcs = testsrc, incs = testincs, @@ -653,7 +653,7 @@ testresources = ['test.rc'] testmisc = ['readme.txt'] env.MSVSProject(target = '%(PROJECT_FILE)s', - projectguid = '%(PROJECT_GUID)s', + MSVS_PROJECT_GUID = '%(PROJECT_GUID)s', slnguid = '{SLNGUID}', srcs = testsrc, incs = testincs, @@ -706,7 +706,7 @@ testmisc = ['readme.txt'] p1 = env.MSVSProject( target = '%(PROJECT_FILE_1)s', - projectguid = '%(PROJECT_GUID_1)s', + MSVS_PROJECT_GUID = '%(PROJECT_GUID_1)s', slnguid = '{SLNGUID}', srcs = testsrc, incs = testincs, @@ -720,7 +720,7 @@ p1 = env.MSVSProject( p2 = env.MSVSProject( target = '%(PROJECT_FILE_2)s', - projectguid = '%(PROJECT_GUID_2)s', + MSVS_PROJECT_GUID = '%(PROJECT_GUID_2)s', slnguid = '{SLNGUID}', srcs = testsrc, incs = testincs, |