1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| configurations {
| Linkages {
| choices : { dynamic, static };
| };
| Platforms {
| key : "Platform";
| choices : { Win32, x64 };
| Win32.aliases : { x86, win32, ia32, 386 };
| x64.aliases : { x64, amd64, em64t, intel64, x86-64, x86_64 };
| };
| Configurations {
| key : "Configuration";
| choices : { Release, Debug };
| };
| Toolsets {
| key : "PlatformToolset";
| choices : { v120, v100, v110 };
| };
| };
|
|