blob: 984cdf2763511f40e8fb64910b3ffec8831039bc (
plain) (
blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
##################
# Initialization #
##################
# Project name is not mandatory, but you should use it
project(CSCI427)
# States that CMake required version must be >= 2.6
cmake_minimum_required(VERSION 2.6)
#####################
# Setup Environment #
#####################
# set to include custom modules
set(CMAKE_MODULE_PATH $ENV{CMAKE_MODULE_PATH} ${CSCI427_SOURCE_DIR}/cmake)
# set build type if specified by environment
if((NOT CMAKE_BUILD_TYPE) AND (NOT $ENV{CMAKE_BUILD_TYPE} STREQUAL ""))
set(CMAKE_BUILD_TYPE $ENV{CMAKE_BUILD_TYPE})
endif()
# Set include directories
include_directories(${CSCI427_SOURCE_DIR}/include)
# Get CPP files
file(GLOB SRC ${CSCI427_SOURCE_DIR}/src/*cpp)
# Get executable files
file(GLOB EXECLIST ${CSCI427_SOURCE_DIR}/bin/*cpp)
###############
# C++ Options #
###############
# Enable C++11
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
# determine build type based on directory name. Do not allow for in source building
#
if(${CSCI427_SOURCE_DIR} STREQUAL ${CSCI427_BINARY_DIR})
message(FATAL_ERROR " *** In-source building not allowed. Please create a subdir 'Release' or 'Debug', and run cmake from within this directory 'cmake ..' ***")
else()
get_filename_component(TYPE ${CSCI427_BINARY_DIR} NAME)
string(TOUPPER "${TYPE}" TYPE)
if(${TYPE} STREQUAL "RELEASE")
set(CMAKE_BUILD_TYPE Release)
else()
set(CMAKE_BUILD_TYPE Debug)
endif()
message("-- Build type set to: ${TYPE}")
endif()
#######################
# Set Compile Targets #
#######################
# src libraries
if(NOT SRC STREQUAL "")
set(LIBNAME "427_core")
add_library(${LIBNAME} ${SRC})
endif()
# executables
foreach(EXEC ${EXECLIST})
get_filename_component(EXECNAME ${EXEC} NAME_WE)
add_executable(${EXECNAME} ${EXEC})
if(NOT SRC STREQUAL "")
target_link_libraries(${EXECNAME} LINK_PUBLIC ${LIBNAME})
endif()
message("-- Adding executable: ${EXECNAME}")
endforeach(EXEC)
|