# Greetings From Bern, Switzerland #
There are people who think Switzerland = Sweden. Sometimes you confuse Switzerland with Swasiland (mostly when choosing your homeland in the IT world ). But Zwitserland, well….
To tell the compiler to print warnings, add debugging symbols and profiling code add the following line to your CMakeLists.txt
CMakeLists.txt
set(CMAKE_CXX_FLAGS "-Wall -g -pg")
as usual -Wall specifies the warning level -g enables debugging and -pg profiling.
-Wall
-g
-pg
View All Photos