[REACTOS] Add reactos/bin/suppl/ to the list of "known" (hardcoded) directories to make build configuration happy.

I use a (not yet used) dir-id value of "80" for this purpose (the value
"8" being already used for /bin/testdata/ and of course values from 9 up
to 50+ are also already used... >_>).
This commit is contained in:
Hermès Bélusca-Maïto 2017-11-17 01:48:18 +01:00
parent aa04c84f62
commit 3356f87b9e
No known key found for this signature in database
GPG Key ID: 3B2539C65E7B93D0
2 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,7 @@ Signature = "$ReactOS$"
6 = inf
7 = bin
8 = bin\testdata
80 = bin\suppl
9 = media
10 = Microsoft.NET
11 = Microsoft.NET\Framework

View File

@ -179,6 +179,8 @@ macro(dir_to_num dir var)
set(${var} 7)
elseif(${dir} STREQUAL reactos/bin/testdata)
set(${var} 8)
elseif(${dir} STREQUAL reactos/bin/suppl)
set(${var} 80)
elseif(${dir} STREQUAL reactos/media)
set(${var} 9)
elseif(${dir} STREQUAL reactos/Microsoft.NET)