admin
2022-07-22 9adb473067a993b4e0eacf3675baf14b29da3eca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
configurations {
    Toolset { 
        key : "PlatformToolset";
        choices : { v110, v100 };
    };
    Platform { 
        key : "Platform";
        choices : { Win32, x64 };
        Win32.aliases : { x86, win32, ia32, 386 };
        x64.aliases : { x64, amd64, em64t, intel64, x86-64, x86_64 };
    };
    Configuration { 
        key : "Configuration";
        choices : { Release, Debug };
    };
    Linkage { 
        choices : { dynamic, static, ltcg };
    };
    CallingConvention { 
        choices : { cdecl, stdcall };
    };
    Other { 
        key : "OTHER_STUFF";
        choices : { RuntimeLibraryNull };
    };
};