This folder contains wxWidgets "Hello, world!" examples.
- HelloWorldEmoticons The classic first application HelloWorld with emoticons.
- HelloWorldGenericStaticText The classic first application HelloWorld with wxGenericStaticText.
- HelloWorldMessageDialog The classic first application HelloWorld with wxMessageDialog.
- HelloWorldMessageDialog2 The classic first application HelloWorld with wxMessageDialog.
- HelloWorldPaint The classic first application HelloWorld with wxEVT_PAINT event.
- HelloWorldSay The classic first application "Hello, World!" with Say.
- HelloWorldStaticText The classic first application HelloWorld with wxStaticText.
- wxWidgetsHelloWorld The classic first application HelloWorld presented as skeleton by wxWidgets.
To build this project, open "Terminal" and type following lines:
mkdir build && cd build
cmake ..
start HelloWorlds.sln
Select any project and type Ctrl+F5 to build and run it.
mkdir build && cd build
cmake .. -G "Xcode"
open ./HelloWorlds.xcodeproj
Select any project and type Cmd+R to build and run it.
mkdir build
cd build
cmake .. -G "CodeBlocks - Unix Makefiles"
xdg-open ./HelloWorlds.cbp > /dev/null 2>&1
Select any project and type F10 to build and run it.
mkdir build
cd build
cmake ..
cmake --build . --config Debug
./AnyProject