This is a simple game I'm writing to test the idea of using games to teach C++.
https://learncodethehardway.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
242 B
12 lines
242 B
7 months ago
|
project('sdl2demo', 'cpp',
|
||
|
default_options: [
|
||
|
'cpp_std=c++17',
|
||
|
])
|
||
|
|
||
|
sdl2_dep = dependency('sdl2')
|
||
|
imgui_dep = dependency('imgui')
|
||
|
|
||
|
executable('sdl2demo', 'main.cpp',
|
||
|
win_subsystem: 'windows',
|
||
|
dependencies: [sdl2_dep, imgui_dep])
|