RoPod/Tutorials/Install SDL library: Difference between revisions
Jump to navigation
Jump to search
(Created page with 'SDL is a library that allows a more dynamic interface of the keyboard is SDL 1.2 (Important!!!). <pre>sudo apt install libsdl1.2-dev </pre> then compile <pre> gcc -o keyboardt…') |
No edit summary |
||
Line 1: | Line 1: | ||
<div style="width: 40%; float: right;"><center>{{:RoPod_Table_Menu}}</center></div> | |||
<div STYLE="float: left; width:60%"> | |||
SDL is a library that allows a more dynamic interface of the keyboard is SDL 1.2 (Important!!!). | SDL is a library that allows a more dynamic interface of the keyboard is SDL 1.2 (Important!!!). | ||
Line 7: | Line 10: | ||
<pre> gcc -o keyboardtest keyboardtest.c `sdl-config --cflags | <pre> gcc -o keyboardtest keyboardtest.c `sdl-config --cflags | ||
--libs` </pre> | --libs` </pre> | ||
</div> |
Latest revision as of 10:46, 13 April 2018
RoPod Navigation:
Info
RoPod Configuration
Other
SDL is a library that allows a more dynamic interface of the keyboard is SDL 1.2 (Important!!!).
sudo apt install libsdl1.2-dev
then compile
gcc -o keyboardtest keyboardtest.c `sdl-config --cflags --libs`