- Projet de premier semestre de Génie Electrique et informatique industrielle.
- First semester's Project of electrical Engineer.
- Download the compilled zip archive.
- Unzip it.
- Run
Enigma.exe
.
- msys2
- GCC, GTK and pkg-config Packages:
pacman -Sy pkg-config mingw-w64-x86_64-gcc mingw-w64-x86_64-gtk3
Go to the main.c path and execute:
x86_64-w64-mingw32-gcc.exe main.c `pkg-config.exe --cflags --libs gtk+-3.0`
Run the a.exe
.
- Xcode
- Homebrew
- GTK package for MacOS (inside MacOS terminal)
brew install gtk+3
- Set up compiler flags:
pkg-config --cflags gtk+-3.0
- Add the result to Other C Flags of Xcode target's Build Settings.
- Set up linker flags:
pkg-config --libs gtk+-3.0
- Add the result to Other Linker Flags.
Xcode should start automaticaly the program.
- GTK
- GCC
- pkg-config
gcc main.c `pkg-config.exe --cflags --libs gtk+-3.0`
Run the program a.out