Skip to content

Instantly share code, notes, and snippets.

View naortega's full-sized avatar

Nicolás A. Ortega Froysa naortega

View GitHub Profile
@naortega
naortega / CMakeLists.txt
Created July 4, 2015 12:49
CMake Allegro (from apt) on Debian Stretch
cmake_minimum_required(VERSION 2.6)
project(Game)
# Set the name of the final binary file
set(bin game)
# Tell CMake where to find the source files (and which to use)
# NOTICE: I am assuming you are like me and you put your source code
# in a src/ directory and your CMakeLists.txt file in the root directory
# of your project.