blob: c42f1911b4dcdcf56038479623b29ed413bc94a6 (
plain) (
blame)
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
27
|
std::call_once bug in Visual C++ 2012/2013
==========================================
Code samples from the post "std::call_once bug in Visual C++ 2012/2013".
Building
--------
Create the build files using CMake and build using your native build tools
(Visual Studio/make/etc.).
In the example below, the project directory is
"C:\workspace\personal\cpp-notes" and Visual Studio 2013 is used, targeting
x86.
> cmake -G "Visual Studio 12 2013" C:\workspace\personal\cpp-notes\std_call_once_bug
...
> cmake --build . --config release
...
See also
--------
* [License]
[License]: ../README.md#license
|