├── .gitignore ├── CMakeLists.txt ├── IDE_USAGE.md ├── LICENSE ├── README.md ├── assets └── tn.png ├── cmake └── sdl2 │ ├── Copyright.txt │ ├── FindSDL2.cmake │ ├── FindSDL2_gfx.cmake │ ├── FindSDL2_image.cmake │ ├── FindSDL2_mixer.cmake │ ├── FindSDL2_net.cmake │ ├── FindSDL2_ttf.cmake │ └── README.md ├── include └── .include_dir ├── rename_project.sh └── src └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | CMakeLists.txt.* 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /IDE_USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/IDE_USAGE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/README.md -------------------------------------------------------------------------------- /assets/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/assets/tn.png -------------------------------------------------------------------------------- /cmake/sdl2/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/cmake/sdl2/Copyright.txt -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/cmake/sdl2/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_gfx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/cmake/sdl2/FindSDL2_gfx.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/cmake/sdl2/FindSDL2_image.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/cmake/sdl2/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_net.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/cmake/sdl2/FindSDL2_net.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_ttf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/cmake/sdl2/FindSDL2_ttf.cmake -------------------------------------------------------------------------------- /cmake/sdl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/cmake/sdl2/README.md -------------------------------------------------------------------------------- /include/.include_dir: -------------------------------------------------------------------------------- 1 | This is the include directory 2 | -------------------------------------------------------------------------------- /rename_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/rename_project.sh -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/sdl2-image-sample/HEAD/src/main.c --------------------------------------------------------------------------------