Skip to content

Instantly share code, notes, and snippets.

@awstanley
Created March 24, 2016 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awstanley/795445cc7731caba22c6 to your computer and use it in GitHub Desktop.
Save awstanley/795445cc7731caba22c6 to your computer and use it in GitHub Desktop.
Tilemap example using the A5 builder ( https://github.com/awstanley/a5builder )
project("tilemapA5")
cmake_minimum_required(VERSION 3.4)
set(EXE_NAME "tilemapA5")
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
include("D:\\a5\\builder\\AllegroDependencies.cmake")
add_executable(${EXE_NAME} "${CMAKE_CURRENT_SOURCE_DIR}/main.cpp")
LINK_ALLEGRO(${EXE_NAME})
install(TARGETS ${EXE_NAME} RUNTIME DESTINATION "${CMAKE_BINARY_DIR}/build")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment