-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCMakeLists.txt
49 lines (37 loc) · 1.33 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
##########################################
## OpenBYOND - Compile Script
##########################################
cmake_minimum_required(VERSION 2.8)
## WHAT A CREATIVE NAME WOW
set(PROJECT_NAME openbyond)
## Versioning shit
set(VERSION_MAJOR 0)
set(VERSION_MINOR 0)
set(VERSION_PATCH 1)
# Uncomment the line below to set the build type
# set(CMAKE_BUILD_TYPE DEBUG)
# Extend the find_package search path
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin)
set(LIBRARY_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin)
# Find Allegro
find_package(allegro 5.0 REQUIRED COMPONENTS
main font ttf native_dialog primitives tiled
)
# Find TCLAP
find_package(TCLAP REQUIRED)
#include_directories(${allegro_INCLUDE_DIRS})
#list(APPEND ${PROJECT_NAME}_LINK_LIBS ${allegro_LIBRARIES})
include(CheckFunctionExists)
CHECK_FUNCTION_EXISTS("vasprintf" HAVE_VASPRINTF)
if(CMAKE_COMPILER_IS_GNUCXX)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
endif()
#
# Every module has a CMakeLists.txt in it's root.
add_subdirectory (${CMAKE_SOURCE_DIR}/openbyond-core)
include_directories(${CMAKE_SOURCE_DIR}/openbyond-core/include)
add_subdirectory (${CMAKE_SOURCE_DIR}/openbyond-tools)
# ${CMAKE_SOURCE_DIR}/openbyond-server
# ${CMAKE_SOURCE_DIR}/openbyond-client
# ${CMAKE_SOURCE_DIR}/openbyond-ide