Modern C++ course switch_example example.
Bonjour
To build switch_example project, open "Terminal" and type following lines:
mkdir build && cd build
cmake ..
start switch_example.slnSelect switch_example project and type Ctrl+F5 to build and run it.
mkdir build && cd build
cmake .. -G "Xcode"
open ./switch_example.xcodeprojSelect switch_example project and type Cmd+R to build and run it.
mkdir build && cd build
cmake ..
cmake --build . --config Debug
./switch_example- Launch Visual Studio Code.
- Select
File/Open Folder...menu. - Select
switch_examplefolder and open it. - Build and Run
switch_exampleproject.
