Created
March 24, 2016 21:42
-
-
Save awstanley/795445cc7731caba22c6 to your computer and use it in GitHub Desktop.
Tilemap example using the A5 builder ( https://github.com/awstanley/a5builder )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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